private LecturerController(IAccountApp accountApp, IClassTeacherApp classTeacherApp, IAccountRoleApp accountRoleApp, IRoleApp roleApp)
 {
     this.accountApp      = accountApp;
     this.classTeacherApp = classTeacherApp;
     this.accountRoleApp  = accountRoleApp;
     this.roleApp         = roleApp;
 }
Example #2
0
 public LoginController(IAccountApp accountApp, IOperationLogApp logApp)
 {
     this.accountApp = accountApp;
     this.logApp     = logApp;
 }
Example #3
0
 public TeamMembersController(ITeamMembersApp teamMembersApp, IAccountApp accountApp)
 {
     this.teamMembersApp = teamMembersApp;
     this.accountApp     = accountApp;
 }