It would make interacting with the library a lot easier if one can use generics to Methods like ReadAsyncs. For example when i want to Request a Patient I don't want to type
FhirResponse patResponse = fhirService.ReadAsync(key);
Patient pat = (Patient)patResponse.Resource;
doSomething(pat)
It would make interacting with the library a lot easier if one can use generics to Methods like ReadAsyncs. For example when i want to Request a Patient I don't want to type
but i could quickly write
It would improve Development experience and Code readibility.