public InstructorController(
     IInstructorApplicationService instructorAppService,
     IQueryRepository queryRepository)
 {
     _QueryRepository = queryRepository;
     _InstructorAppService = instructorAppService;
 }
 public IInstructorApplicationService _SetInstructorApplicationService(IInstructorApplicationService obj)
 {
     _IInstructorApplicationService = obj; return obj;
 }