public TeamService(ITeamRepository teamRepository, IMapper mapper, IProjectRepository projectRepository, IRTaskRepository taskRepository, TeamChatService teamChatService, TaskService taskService, IRoomRepository roomRepository, ITeamMembersRepository teamMembersRepository)
 {
     this.teamRepository        = teamRepository;
     this.mapper                = mapper;
     this.projectRepository     = projectRepository;
     this.taskRepository        = taskRepository;
     this.teamChatService       = teamChatService;
     this.roomRepository        = roomRepository;
     this.taskService           = taskService;
     this.teamMembersRepository = teamMembersRepository;
 }
Esempio n. 2
0
 public TaskService(IRTaskRepository taskRepository, IMapper mapper, ITeamRepository teamRepository, IProjectRepository projectRepository, SessionService sessionService, AttachmentService attachmentService, CommentService commentService, CheckPointService checkPointService, ICheckpointRepository checkpointRepository, IUserRepository userRepository)
 {
     this.taskRepository       = taskRepository;
     this.mapper               = mapper;
     this.teamRepository       = teamRepository;
     this.projectRepository    = projectRepository;
     this.checkpointRepository = checkpointRepository;
     this.sessionService       = sessionService;
     this.attachmentService    = attachmentService;
     this.checkPointService    = checkPointService;
     this.commentService       = commentService;
     this.userRepository       = userRepository;
 }
 public SessionService(ISessionRepository sessionRepository, IMapper mapper, IRTaskRepository taskRepository)
 {
     this.sessionRepository = sessionRepository;
     this.mapper            = mapper;
     this.taskRepository    = taskRepository;
 }
Esempio n. 4
0
 public CheckPointService(ICheckpointRepository checkpointRepository, IMapper mapper, IRTaskRepository taskRepository)
 {
     this.checkpointRepository = checkpointRepository;
     this.mapper         = mapper;
     this.taskRepository = taskRepository;
 }
Esempio n. 5
0
 public AttachmentService(IAttachmentRepository attachmentRepository, IMapper mapper, IRTaskRepository taskRepository)
 {
     this.attachmentRepository = attachmentRepository;
     this.mapper         = mapper;
     this.taskRepository = taskRepository;
 }
 public CommentService(ICommentRepository commentRepository, IRTaskRepository taskRepository, IMapper mapper)
 {
     this.commentRepository = commentRepository;
     this.taskRepository    = taskRepository;
     this.mapper            = mapper;
 }