Example #1
0
 public TimeLogController(
     MainDbContext db,
     IUserEventsService userEventsService,
     ITimeLogService timeLogService)
     : base(db, userEventsService)
 {
     _timeLogService = timeLogService;
 }
Example #2
0
 public TotalsController(
     MainDbContext db,
     ITimeLogService timeLogService,
     ILoggerFactory loggerFactory,
     IUserEventsService userEventsService)
     : base(db, userEventsService)
 {
     _loggerFactory  = loggerFactory;
     _timeLogService = timeLogService;
 }
 public TimeLogController()
 {
     service = new TimeLogService();
 }
Example #4
0
 public TimeLogController(
     ITimeLogService timeLogFilterService)
 {
     _timeLogService = timeLogFilterService;
 }