You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered: