public WorklogController(IWorklogService worklogService, IUserService userService, IProjectService projectService, ITimelogService timelogService)
 {
     _worklogService = worklogService;
     _userService    = userService;
     _projectService = projectService;
     _timelogService = timelogService;
 }
 public TimelogController(IUserService userService, IWorklogService worklogService, ITimelogService timelogService)
 {
     _worklogService = worklogService;
     _userService    = userService;
     _timelogService = timelogService;
 }
Esempio n. 3
0
 public ProjectService(OnlineTimeTrackContext onlineTimeTrackContext, IUserService userService, ITimelogService timelogService)
 {
     _onlineTimeTrackContext = onlineTimeTrackContext;
 }