Beispiel #1
0
 public AssessmentController(IRequestDispatcherFactory requestDispatcherFactory,
                             IRouteNavigationService routeNavigationService,
                             IPatientAccessControlManager patientAccessControlManager)
     : base(requestDispatcherFactory, patientAccessControlManager)
 {
     _routeNavigationService = routeNavigationService;
 }
Beispiel #2
0
 public HomeController(IRequestDispatcherFactory requestDispatcherFactory, IPatientAccessControlManager patientAccessControlManager)
     : base(requestDispatcherFactory, patientAccessControlManager)
 {
 }
Beispiel #3
0
 public AssessmentController(IRequestDispatcherFactory requestDispatcherFactory, IPatientAccessControlManager patientAccessControlManager)
     : base(requestDispatcherFactory)
 {
     _patientAccessControlManager = patientAccessControlManager;
 }
Beispiel #4
0
 public AccountController(IRequestDispatcherFactory requestDispatcherFactory, IPatientAccessControlManager patientAccessControlManager, ILogoutService logoutService)
     : base(requestDispatcherFactory, patientAccessControlManager)
 {
     _logoutService = logoutService;
 }
Beispiel #5
0
 protected BaseController(IRequestDispatcherFactory requestDispatcherFactory, IPatientAccessControlManager patientAccessControlManager)
 {
     _requestDispatcherFactory    = requestDispatcherFactory;
     _patientAccessControlManager = patientAccessControlManager;
 }
Beispiel #6
0
 public PatientSearchDataTableController(IRequestDispatcherFactory requestDispatcherFactory, IPatientAccessControlManager patientAccessControlManager)
     : base(requestDispatcherFactory)
 {
     _patientAccessControlManager = patientAccessControlManager;
 }