예제 #1
0
 public PostManager(IPostRepository repository, IUserTeacherRepository teacher, IClassroomRepository classroom)
 {
     this._repository = repository;
     this._teacher    = teacher;
     this._classroom  = classroom;
 }
예제 #2
0
 public UserTeacherManager(IUserTeacherRepository repository, IRoleRepository roleRepository)
 {
     this._repository     = repository;
     this._roleRepository = roleRepository;
 }
예제 #3
0
 public AssignmetManager(IAssignmentsRepository repository, IUserTeacherRepository teacher, IClassroomRepository classroom)
 {
     this._repository = repository;
     this._teacher    = teacher;
     this._classroom  = classroom;
 }
예제 #4
0
 public ClassroomManager(IClassroomRepository repository, IUserTeacherRepository teacher)
 {
     this._repository = repository;
     this._teacher    = teacher;
 }