예제 #1
0
 public CheckInOutController(ICheckInOutService checkInOutService, ITaskManagementService taskManagementService, ISearchLoggingService searchLoggingService)
 {
     _checkInOutService     = checkInOutService;
     _taskManagementService = taskManagementService;
     _searchLoggingService  = searchLoggingService;
 }
예제 #2
0
 public ConfigurationController(IConfigurationService configurationService, ITaskManagementService taskManagementService)
 {
     _configurationService  = configurationService;
     _taskManagementService = taskManagementService;
 }
 public TaskManangementController(IServiceProvider serviceProvider)
 {
     _taskService    = serviceProvider.GetService <ITaskManagementService>();
     identityService = serviceProvider.GetService <IIdentityService>();
     validateService = serviceProvider.GetService <IValidateService>();
 }