Exemple #1
0
 public TutorController(ITutorRepo tutorRepo)
 {
     this.repo = tutorRepo;
 }
 public UserController(ITutorRepo tutorRepo, IParentRepo parentRepo)
 {
     this.repo  = tutorRepo;
     this.pRepo = parentRepo;
 }
 public appliedListController(IPostRepo repo, IApplyInfoRepo aRepo, ITutorRepo tRepo)
 {
     this.repo      = repo;
     this.applyRepo = aRepo;
     this.tutorRepo = tRepo;
 }