public ReportController(IReportService reportService, IDataContext dataContext, ITimeStartService timeStartService, IProjectService projectService)
 {
     this.reportService    = reportService;
     this.dataContext      = dataContext;
     this.timeStartService = timeStartService;
     this.projectService   = projectService;
 }
예제 #2
0
 public ProjectController(IProjectService projectService, IDataContext dataContext, ITagService tagService, ITimeStartService timeStartService, IGuestService guestService, IReportService reportService)
 {
     this.projectService   = projectService;
     this.dataContext      = dataContext;
     this.tagService       = tagService;
     this.timeStartService = timeStartService;
     this.guestService     = guestService;
     this.reportService    = reportService;
 }
예제 #3
0
 public TimeStartsController(ITimeStartService timeStartService)
 {
     _tsService = timeStartService;
 }