public appliedListController(IPostRepo repo, IApplyInfoRepo aRepo, ITutorRepo tRepo)
 {
     this.repo      = repo;
     this.applyRepo = aRepo;
     this.tutorRepo = tRepo;
 }
 public ApplyController(IApplyInfoRepo applyInfoRepo)
 {
     this.repo = applyInfoRepo;
 }