Example #1
0
 public PeopleController(CompucareWardContext context, IGlobalSettingsService globalSettingsService)
 {
     _context = context;
     _globalSettingsService = globalSettingsService;
 }
 public GlobalSettingsService(CompucareWardContext context)
 {
     _context = context;
 }
Example #3
0
 public InpatientBookingServiceInternal(CompucareWardContext context)
 {
     _context = context;
 }
Example #4
0
 public PatientsController(CompucareWardContext context)
 {
     _context = context;
 }
 public InpatientBookingsController(CompucareWardContext context, IInpatientBookingServiceInternal inpatientBookingService, IGlobalSettingsService globalSettingsService)
 {
     _context = context;
     _inpatientBookingService = inpatientBookingService;
     _globalSettingsService   = globalSettingsService;
 }
 public LocationsController(CompucareWardContext context) => _context = context;
Example #7
0
 public NursesController(CompucareWardContext context)
 {
     _context = context;
 }
 public FormResultsController(CompucareWardContext context, IInpatientBookingServiceInternal inpatientBookingService)
 {
     _context = context;
     _inpatientBookingService = inpatientBookingService;
 }
Example #9
0
 public FormComponentsController(CompucareWardContext context)
 {
     _context = context;
 }