private LecturerController(IAccountApp accountApp, IClassTeacherApp classTeacherApp, IAccountRoleApp accountRoleApp, IRoleApp roleApp)
 {
     this.accountApp      = accountApp;
     this.classTeacherApp = classTeacherApp;
     this.accountRoleApp  = accountRoleApp;
     this.roleApp         = roleApp;
 }
Ejemplo n.º 2
0
 public RoleApp(IRoleRepository roleRepository, IRoleAuthenticationApp roleAuthApp, IAccountRoleApp accountRoleApp)
 {
     this.roleRepository = roleRepository;
     this.roleAuthApp    = roleAuthApp;
     this.accountRoleApp = accountRoleApp;
 }
Ejemplo n.º 3
0
 public TeamMembersApp(ITeamMembersRepository teamMembersRepository, IAccountRoleApp accountRoleApp, IRoleApp roleApp)
 {
     this.teamMembersRepository = teamMembersRepository;
     this.accountRoleApp        = accountRoleApp;
     this.roleApp = roleApp;
 }