public TimeReportsController()
 {
     this.unitOfWork     = new UnitOfWork();
     this.reportsService = new TimeReportService(unitOfWork);
 }
 public TimeReportServiceFactory(ITimeReportService reportService)
 {
     this.reportService = (TimeReportService)reportService;
 }