Ejemplo n.º 1
0
 public ScheduleService(ApplicationDBContext context, IHolidayApiService holidayApiService)
 {
     this._context           = context;
     this._holidayApiService = holidayApiService;
 }
 public DayActionsService(ApplicationDBContext context, IHolidayApiService holidayApiService, IScheduleService scheduleService)
 {
     this._context           = context;
     this._holidayApiService = holidayApiService;
     this._scheduleService   = scheduleService;
 }