Exemplo n.º 1
0
 public BugController(ICookieHelper cookieHelper, IProjectLogic projectLogic, IBugLogic bugLogic, IBugStatusLogic bugStatusLogic, IUserProjectRoleRelationLogic userProjectRoleRelationLogic, IUserLogic userLogic, IBugCommentLogic bugCommentLogic)
 {
     _cookieHelper = cookieHelper;
     _projectLogic = projectLogic;
     _bugLogic = bugLogic;
     _bugStatusLogic = bugStatusLogic;
     _userProjectRoleRelationLogic = userProjectRoleRelationLogic;
     _userLogic = userLogic;
     _bugCommentLogic = bugCommentLogic;
 }
Exemplo n.º 2
0
 public BugController(IBugLogic bugLogic)
 {
     _bugLogic = bugLogic;
 }