public TaskEventHandler(IRepository <Models.Project> projectRepository, IRepository <Models.Task> taskRepository, IRepository <Models.User> userRepository, IRepository <Models.Sprint> sprintRepository, ILabelSearcher labelSearcher, IRepository <Models.Subtask> subtaskRepository, ProjectManagementViewContext db) { this.projectRepository = projectRepository; this.taskRepository = taskRepository; this.userRepository = userRepository; this.sprintRepository = sprintRepository; this.labelSearcher = labelSearcher; this.subtaskRepository = subtaskRepository; this.db = db; }
public NfrEventHandler(IRepository <Models.Project> projectRepository, IRepository <Models.Nfr> nfrRepository, IRepository <Models.User> userRepository, IRepository <Models.Sprint> sprintRepository, ILabelSearcher labelSearcher, IRepository <Models.Bug> bugRepository, ProjectManagementViewContext db) { this.projectRepository = projectRepository; this.nfrRepository = nfrRepository; this.userRepository = userRepository; this.sprintRepository = sprintRepository; this.labelSearcher = labelSearcher; this.bugRepository = bugRepository; this.db = db; }