Exemplo n.º 1
0
 public TechnicianService(IDbContext context,
                          IStatutoryHolidayService statutoryHolidayService)
     : base(context)
 {
     _context = context;
     _statutoryHolidayService = statutoryHolidayService;
 }
Exemplo n.º 2
0
 public ProjectService(IDbContext context,
                       ITechnicianService technicianService,
                       IStatutoryHolidayService statutoryHolidayService,
                       ILogService logService)
     : base(context)
 {
     _context                 = context;
     _technicianService       = technicianService;
     _statutoryHolidayService = statutoryHolidayService;
     _logService              = logService;
 }