public BugController(IBugRepository bugRepository, IBugCommentRepository bugCommentRepository, UserManager <ApplicationUser> userManager,
                      SignInManager <ApplicationUser> signInManager)
 {
     _bugRepository             = bugRepository;
     this._bugCommentRepository = bugCommentRepository;
     this.userManager           = userManager;
     this.signInManager         = signInManager;
 }
Ejemplo n.º 2
0
 public BugLogic(IBugRepository bugRepository, IBugStatusRepository bugStatusRepository, IUserRepository userRepository, IProjectRepository projectRepository, IBugCommentRepository bugCommentRepository,IBugStatusLogic iBugStatusLogic)
 {
     _bugRepository = bugRepository;
     _bugStatusRepository = bugStatusRepository;
     _userRepository = userRepository;
     _projectRepository = projectRepository;
     _bugCommentRepository = bugCommentRepository;
     _bugStatusLogic = iBugStatusLogic;
 }
Ejemplo n.º 3
0
 public BugCommentLogic(IBugCommentRepository bugCommentRepository)
 {
     _bugCommentRepository = bugCommentRepository;
 }