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;
 }
Ejemplo n.º 2
0
 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;
 }
Ejemplo n.º 3
0
 public NfrRepository(ProjectManagementViewContext dbContext) : base(dbContext)
 {
 }
 public ProjectSearcher(ProjectManagementViewContext db)
 {
     this.db = db;
 }
 public SprintEventHandler(ProjectManagementViewContext db)
 {
     this.db = db;
 }
 public AuthorizationPipelineItem(ProjectManagementViewContext context, CallContext callContext)
 {
     this.context     = context;
     this.callContext = callContext;
 }
Ejemplo n.º 7
0
 public LabelSearcher(ProjectManagementViewContext context)
 {
     this.context = context;
 }