public FakeAreasController(
     IAreasServices areas,
     IRecordsServices records,
     IDocumentsServices documents,
     IUsersServices users) : base(areas, records, documents, users)
 {
 }
 public FakeAreasController(
     IAreasServices areas,
     IRecordsServices records,
     IDocumentsServices documents,
     IUsersServices users) : base(areas, records, documents, users)
 {
 }
 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.º 4
0
 public RecordsController(
     IRecordsServices records,
     IDocumentsServices documents,
     IAreasServices areas,
     IRecordFilesServices recordFiles)
 {
     this.records     = records;
     this.documents   = documents;
     this.areas       = areas;
     this.recordFiles = recordFiles;
 }
Ejemplo n.º 5
0
 public AreasController(
     IAreasServices areas,
     IRecordsServices records,
     IDocumentsServices documents,
     IUsersServices users)
 {
     this.areas     = areas;
     this.records   = records;
     this.documents = documents;
     this.users     = users;
 }
Ejemplo n.º 6
0
 public AreasController(
     IAreasServices areas,
     IRecordsServices records,
     IDocumentsServices documents,
     IUsersServices users)
 {
     this.areas = areas;
     this.records = records;
     this.documents = documents;
     this.users = users;
 }
Ejemplo n.º 7
0
 public HomeController(
     INotesServices notes,
     IRecordsServices records,
     IDocumentsServices documents,
     IUsersServices users)
 {
     this.notes     = notes;
     this.records   = records;
     this.documents = documents;
     this.users     = users;
 }
Ejemplo n.º 8
0
 public HomeController(
     INotesServices notes,
     IRecordsServices records,
     IDocumentsServices documents,
     IUsersServices users)
 {
     this.notes = notes;
     this.records = records;
     this.documents = documents;
     this.users = users;
 }
Ejemplo n.º 9
0
 public RecordsController(
     IRecordsServices records,
     IDocumentsServices documents,
     IAreasServices areas,
     IRecordFilesServices recordFiles)
 {
     this.records = records;
     this.documents = documents;
     this.areas = areas;
     this.recordFiles = recordFiles;
 }
Ejemplo n.º 10
0
 public DocumentsController(IDocumentsServices documents)
 {
     this.documents = documents;
 }
Ejemplo n.º 11
0
 public DocumentsController(IDocumentsServices documents, IProceduresServices procedures)
 {
     this.documents = documents;
     this.procedures = procedures;
 }
Ejemplo n.º 12
0
 public DocumentsController(IDocumentsServices documents, IProceduresServices procedures)
 {
     this.documents  = documents;
     this.procedures = procedures;
 }
Ejemplo n.º 13
0
 public DocumentController(IDocumentsServices repo, IMapper mapper)
 {
     _repo   = repo;
     _mapper = mapper;
 }
Ejemplo n.º 14
0
 public DocumentsController(IDocumentsServices documents)
 {
     this.documents = documents;
 }