Example #1
0
 public async Task <Spine> GetConsumerDetails(string odsCode)
 {
     if (_spineOptionsDelegate.CurrentValue.SdsUseFhirApi)
     {
         return(await _fhirApiService.GetConsumerDetails(odsCode));
     }
     else
     {
         return(_ldapService.GetGpConsumerAsIdByOdsCode(odsCode));
     }
 }