public PointerService(IOptions <ApiSetting> apiSetting, IDocumentReferenceServices docRefService, IPatientServices patientService, IOrganisationServices organisationServices, IMemoryCache cache, IDocumentsServices docService)
 {
     _apiSetting           = apiSetting.Value;
     _docRefService        = docRefService;
     _patientService       = patientService;
     _organisationServices = organisationServices;
     _cache      = cache;
     _docService = docService;
 }
Esempio n. 2
0
 public PointerService(IDocumentReferenceServices docRefService, IPatientServices patientService, IOrganisationServices organisationServices)
 {
     _docRefService        = docRefService;
     _patientService       = patientService;
     _organisationServices = organisationServices;
 }