Ejemplo n.º 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;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 5
0
 /// <summary>
 /// Controller constructor
 /// </summary>
 /// <param name="shiftService"></param>
 public ShiftController(IShiftService shiftService)
 {
     _shiftService = shiftService;
 }
Ejemplo n.º 6
0
 public LogShift(IShiftService shiftService, IAuthenticationHelper authenticationHelper)
 {
     _shiftService         = shiftService;
     _authenticationHelper = authenticationHelper;
 }
Ejemplo n.º 7
0
 public ShiftsController(ApplicationDbContext context, UserManager <ApplicationUser> userManager, IShiftService shiftService)
 {
     _context      = context;
     _userManager  = userManager;
     _shiftService = shiftService;
 }
Ejemplo n.º 8
0
 public WheelOfFateService(IShiftService shiftService, IEngineerService engineerService, int shiftsPerDay)
 {
     this.shiftService    = shiftService;
     this.engineerService = engineerService;
     this.shiftsPerDay    = shiftsPerDay;
 }
Ejemplo n.º 9
0
 public LoginController(IShiftService shiftService)
 {
     this._shiftService = shiftService;
 }
Ejemplo n.º 10
0
 public WorkerService(IShiftService shiftService, IOptions <ShiftConfiguration> options, ILogger <WorkerService> logger)
 {
     this.shiftService  = shiftService;
     this.configuration = options.Value;
     this.logger        = logger;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 12
0
 public GetAllShifts(IShiftService shiftService, IAuthenticationHelper authenticationHelper)
 {
     _shiftService         = shiftService;
     _authenticationHelper = authenticationHelper;
 }
 public ShiftController(IShiftService shiftService,
                        ILogger <ShiftController> logger)
 {
     _shiftService = shiftService;
     _logger       = logger;
 }
Ejemplo n.º 14
0
 public ShiftController(IShiftService shiftService)
 {
     iShift = shiftService;
 }
Ejemplo n.º 15
0
 public ShiftController(IShiftService service)
 {
     this.service = service;
 }
Ejemplo n.º 16
0
 public ScheduleAdaptor(IShiftService shiftService)
 {
     _shiftService = shiftService;
 }
Ejemplo n.º 17
0
 public ShiftPage(ShiftPageViewModel vM)
 {
     InitializeComponent();
     _shiftService  = new ShiftService();
     BindingContext = _vM = vM;
 }
Ejemplo n.º 18
0
 public ShiftApplicationsPerGroupViewComponent(IShiftService shiftService)
 {
     this.shiftService = shiftService;
 }
Ejemplo n.º 19
0
 public ProductionService(IRepository repository, IIsolatorService isolatorService, IShiftService shiftService)
 {
     _repository      = repository;
     _isolatorService = isolatorService;
     _shiftService    = shiftService;
 }
Ejemplo n.º 20
0
 public CalendarController(IShiftService shiftService)
 {
     this.shiftService = shiftService;
 }
Ejemplo n.º 21
0
 public DoctorController(IShiftService shiftService)
 {
     _shiftService = shiftService;
 }
Ejemplo n.º 22
0
 public ShiftController(IShiftService ShiftService)
 {
     _ShiftService = ShiftService;
 }
Ejemplo n.º 23
0
 public ShiftsController(IShiftService shiftService
                         , IExceptionLogger logger)
 {
     _shiftService = shiftService;
     _logger       = logger;
 }
Ejemplo n.º 24
0
 public ShiftController(IMapper mapper, IShiftService service)
     : base(mapper, service)
 {
 }
Ejemplo n.º 25
0
 public ShiftController(IShiftService shiftService, IMapper mapper)
 {
     _shiftService = shiftService;
     _mapper       = mapper;
 }
Ejemplo n.º 26
0
 public ShiftsController (IShiftService  shiftService, IUnitOfWorkAsync unitOfWork)
 {
     _shiftService  = shiftService;
     _unitOfWork = unitOfWork;
 }
Ejemplo n.º 27
0
 public TestStuffController(IUserService userService, IShiftService shiftService, IPendingShiftService pendingShiftService)
 {
     _userService         = userService;
     _shiftService        = shiftService;
     _pendingShiftService = pendingShiftService;
 }