Exemplo n.º 1
0
 public TasksController()
 {
     var contextRepository = new ContextRepository();
     _userRepository = new UserRepository(contextRepository);
     _taskRepository = new TaskRepository(contextRepository, _userRepository);
     _workflowStepRepository = new WorkflowStepRepository(contextRepository);
 }
Exemplo n.º 2
0
 public MenuController()
 {
     var contextRepository = new ContextRepository();
     _teamRepository = new TeamRepository(contextRepository);
 }
Exemplo n.º 3
0
 public WorklogsController()
 {
     var contextRepository = new ContextRepository();
     _userRepository = new UserRepository(contextRepository);
     _worklogRepository = new WorklogRepository(contextRepository, _userRepository);
 }