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;
 }
Ejemplo n.º 2
0
        //private string _uniqueId = null;

        public FhirCommand(string[] args)
        {
            ServiceProvider serviceProvider;
            ConfigureServices(out serviceProvider);

            _docRefService = serviceProvider.GetService<IDocumentReferenceServices>();
            _clientAsidHelper = serviceProvider.GetService<IClientAsidHelper>();

            _clientAsidHelper.Load();

            _args = args;
        }
Ejemplo n.º 3
0
 public PointerService(IDocumentReferenceServices docRefService, IPatientServices patientService, IOrganisationServices organisationServices)
 {
     _docRefService        = docRefService;
     _patientService       = patientService;
     _organisationServices = organisationServices;
 }
 public CrisisPlanService(INRLSMongoDBContext context, IDocumentReferenceServices documentReferenceServices, IPointerMapService pointerMapService)
 {
     _context = context;
     _documentReferenceServices = documentReferenceServices;
     _pointerMapService         = pointerMapService;
 }