예제 #1
0
 public EmployeeController(IEmpDBContext empDBContext, IEmployeeService empService, ICityService cityService, IStateService stateService, IJobService jobService, IDepartmentService departmentService, IWorkingDayService workingdaysService, IShiftService shiftsService)
 {
     db = empDBContext;
     _empService = empService;
     _stateService = stateService;
     _cityService = cityService;
     _jobService = jobService;
     _departmentService = departmentService;
     _workingdayService = workingdaysService;
     _shiftService = shiftsService;
 }
 public ShiftsController(IShiftService shiftService, IShiftRepository shiftRepository)
 {
     _shiftService    = shiftService;
     _shiftRepository = shiftRepository;
 }
예제 #3
0
 public ScheduleService(IScheduleRepository scheduleRepository, IShiftService shiftService)
 {
     _scheduleRepository = scheduleRepository;
     _shiftService       = shiftService;
 }
 public AccountController(ILoginService LoginService, IEmailSender EmailSender, IShiftService ShiftService)
 {
     _LoginService = LoginService;
     _EmailSender  = EmailSender;
     _ShiftService = ShiftService;
 }
예제 #5
0
 /// <summary>
 /// Controller constructor
 /// </summary>
 /// <param name="shiftService"></param>
 public ShiftController(IShiftService shiftService)
 {
     _shiftService = shiftService;
 }
예제 #6
0
 public LogShift(IShiftService shiftService, IAuthenticationHelper authenticationHelper)
 {
     _shiftService         = shiftService;
     _authenticationHelper = authenticationHelper;
 }
예제 #7
0
 public ShiftsController(ApplicationDbContext context, UserManager <ApplicationUser> userManager, IShiftService shiftService)
 {
     _context      = context;
     _userManager  = userManager;
     _shiftService = shiftService;
 }
예제 #8
0
 public WheelOfFateService(IShiftService shiftService, IEngineerService engineerService, int shiftsPerDay)
 {
     this.shiftService    = shiftService;
     this.engineerService = engineerService;
     this.shiftsPerDay    = shiftsPerDay;
 }
예제 #9
0
 public LoginController(IShiftService shiftService)
 {
     this._shiftService = shiftService;
 }
예제 #10
0
 public WorkerService(IShiftService shiftService, IOptions <ShiftConfiguration> options, ILogger <WorkerService> logger)
 {
     this.shiftService  = shiftService;
     this.configuration = options.Value;
     this.logger        = logger;
 }
예제 #11
0
 public Worker(ILogger <Worker> logger, IConfiguration config, ITwitterService twitterService, IShiftService shiftService, IEmailService emailService)
 {
     _logger         = logger;
     _config         = config;
     _twitterService = twitterService;
     _shiftService   = shiftService;
     _emailService   = emailService;
 }
예제 #12
0
 public GetAllShifts(IShiftService shiftService, IAuthenticationHelper authenticationHelper)
 {
     _shiftService         = shiftService;
     _authenticationHelper = authenticationHelper;
 }
 public ShiftController(IShiftService shiftService,
                        ILogger <ShiftController> logger)
 {
     _shiftService = shiftService;
     _logger       = logger;
 }
예제 #14
0
 public ShiftController(IShiftService shiftService)
 {
     iShift = shiftService;
 }
예제 #15
0
 public ShiftController(IShiftService service)
 {
     this.service = service;
 }
예제 #16
0
 public ScheduleAdaptor(IShiftService shiftService)
 {
     _shiftService = shiftService;
 }
예제 #17
0
 public ShiftPage(ShiftPageViewModel vM)
 {
     InitializeComponent();
     _shiftService  = new ShiftService();
     BindingContext = _vM = vM;
 }
예제 #18
0
 public ShiftApplicationsPerGroupViewComponent(IShiftService shiftService)
 {
     this.shiftService = shiftService;
 }
예제 #19
0
 public ProductionService(IRepository repository, IIsolatorService isolatorService, IShiftService shiftService)
 {
     _repository      = repository;
     _isolatorService = isolatorService;
     _shiftService    = shiftService;
 }
예제 #20
0
 public CalendarController(IShiftService shiftService)
 {
     this.shiftService = shiftService;
 }
예제 #21
0
 public DoctorController(IShiftService shiftService)
 {
     _shiftService = shiftService;
 }
예제 #22
0
 public ShiftController(IShiftService ShiftService)
 {
     _ShiftService = ShiftService;
 }
예제 #23
0
 public ShiftsController(IShiftService shiftService
                         , IExceptionLogger logger)
 {
     _shiftService = shiftService;
     _logger       = logger;
 }
예제 #24
0
 public ShiftController(IMapper mapper, IShiftService service)
     : base(mapper, service)
 {
 }
예제 #25
0
 public ShiftController(IShiftService shiftService, IMapper mapper)
 {
     _shiftService = shiftService;
     _mapper       = mapper;
 }
예제 #26
0
 public ShiftsController (IShiftService  shiftService, IUnitOfWorkAsync unitOfWork)
 {
     _shiftService  = shiftService;
     _unitOfWork = unitOfWork;
 }
예제 #27
0
 public TestStuffController(IUserService userService, IShiftService shiftService, IPendingShiftService pendingShiftService)
 {
     _userService         = userService;
     _shiftService        = shiftService;
     _pendingShiftService = pendingShiftService;
 }