Example #1
0
 public ReservationsController(IReservationsService reservationService,
                               IMapper mapper, IWorkDaysService workDaysService)
 {
     _reservationService = reservationService;
     _mapper             = mapper;
     _workDaysService    = workDaysService;
 }
 public ReservationsService(IReservationsRepository reservationsRepository, IAccountsService accountsService,
                            IWorkDaysService workDaysService)
 {
     _reservationsRepository = reservationsRepository;
     _accountsService        = accountsService;
     _workDaysService        = workDaysService;
 }
Example #3
0
 public WorkDaysController(IWorkDaysService workDaysService, IMapper mapper)
 {
     _workDaysService = workDaysService;
     _mapper          = mapper;
 }