public ArticleEvaluationController(IReferentialTeacherService referentialTeacherService, IArticleService ArticleService, IAppraiserService appraiserService, IUnitOfWork unitOfWork, IArticleEvaluationService evaluationService, IQuestionService questionService)
 {
     _unitOfWork = unitOfWork;
     _evaluationService = evaluationService;
     _questionService = questionService;
     _appraiserService = appraiserService;
     _ArticleService = ArticleService;
     _referentialTeacherService = referentialTeacherService;
 }
 public TeacherController(IUnitOfWork unitOfWork, IApplicationUserManager userManager, IReferentialTeacherService referentialTeacherService,
     ITrainingCenterService trainingCenterService, ITrainingCourseService trainingCourseService, ITitleService titleService,
     ITeacherService TeacherService, IStateService stateService, ICityService cityService)
 {
     _unitOfWork = unitOfWork;
     _userManager = userManager;
     _TeacherService = TeacherService;
     _stateService = stateService;
     _cityService = cityService;
     _trainingCenterService = trainingCenterService;
     _titleService = titleService;
     _referentialTeacherService = referentialTeacherService;
 }
Exemple #3
0
 public TeacherService(HttpContextBase httpContextBase, IUnitOfWork unitOfWork, IApplicationUserManager userManager, ITrainingCenterService trainingCenter, ITrainingCourseService trainingCourse,
     IMappingEngine mappingEngine, IReferentialTeacherService referentialTeacherService, ITitleService titleService, IStateService stateService, ICityService cityService
     )
 {
     _userManager = userManager;
     _unitOfWork = unitOfWork;
     _Teachers = _unitOfWork.Set<Teacher>();
     _mappingEngine = mappingEngine;
     _cityService = cityService;
     _stateService = stateService;
     _titleService = titleService;
     _httpContextBase = httpContextBase;
     _referentialTeacherService = referentialTeacherService;
     _trainingCenterService = trainingCenter;
     _trainingCourseService = trainingCourse;
 }
 public ScientificTeachingController(IReferentialTeacherService referentialTeacherService,IUnitOfWork unitOfWork, IEducationalExperienceService educationalExperienceService)
 {
     _unitOfWork = unitOfWork;
     _educationalExperienceService = educationalExperienceService;
     _referentialTeacherService = referentialTeacherService;
 }
 public AddressController(IUnitOfWork unitOfWork, IAddressService addressService,IReferentialTeacherService referentialTeacherService)
 {
     _unitOfWork = unitOfWork;
     _addressService = addressService;
     _referentialTeacherService = referentialTeacherService;
 }
 public WorkExperienceController(IUnitOfWork unitOfWork, IWorkExperienceService WorkExperienceService,IReferentialTeacherService referentialTeacherService)
 {
     _unitOfWork = unitOfWork;
     _workExperienceService = WorkExperienceService;
     _referentialTeacherService = referentialTeacherService;
 }
 public ResearchExperienceController(IReferentialTeacherService referentialTeacherService,IUnitOfWork unitOfWork, IResearchExperienceService ResearchExperienceService)
 {
     _unitOfWork = unitOfWork;
     _researchExperienceService = ResearchExperienceService;
     _referentialTeacherService = referentialTeacherService;
 }
 public InterviewController(IUnitOfWork unitOfWork, IInterviewService interviewService,IReferentialTeacherService referentialTeacherService)
 {
     _unitOfWork = unitOfWork;
     _interviewService = interviewService;
     _referentialTeacherService = referentialTeacherService;
 }
 public FavoriteIssueController(IUnitOfWork unitOfWork, IEducationalExperienceService educationalExperienceService,IReferentialTeacherService referentialTeacherService)
 {
     _unitOfWork = unitOfWork;
     _educationalExperienceService = educationalExperienceService;
     _referentialTeacherService = referentialTeacherService;
 }
 public EntireEvaluationController(IUnitOfWork unitOfWork, IEntireEvaluationService entireEvaluationService,IReferentialTeacherService referentialTeacherService)
 {
     _unitOfWork = unitOfWork;
     _entireEvaluationService = entireEvaluationService;
     _referentialTeacherService = referentialTeacherService;
 }
 public AdoptedPriorityController(IUnitOfWork unitOfWork, IEducationalExperienceService educationalExperienceService,IReferentialTeacherService referentialTeacherService)
 {
     _unitOfWork = unitOfWork;
     _educationalExperienceService = educationalExperienceService;
     _referentialTeacherService = referentialTeacherService;
 }
 public EducationalBackgroundController(IUnitOfWork unitOfWork, IEducationalBackgroundService educationalBackgroundService,IReferentialTeacherService referentialTeacherService)
 {
     _unitOfWork = unitOfWork;
     _educationalBackgroundService = educationalBackgroundService;
     _referentialTeacherService = referentialTeacherService;
 }
 public TeacherInServiceCourseTypeController(IReferentialTeacherService referentialTeacherService,IUnitOfWork unitOfWork, ITeacherInServiceCourseTypeService TeacherInServiceCourseTypeService)
 {
     _unitOfWork = unitOfWork;
     _TeacherInServiceCourseType = TeacherInServiceCourseTypeService;
     _referentialTeacherService = referentialTeacherService;
 }
 public ArticleController(IUnitOfWork unitOfWork, IArticleService ArticleService,IReferentialTeacherService referentialTeacherService)
 {
     _unitOfWork = unitOfWork;
     _ArticleService = ArticleService;
     _referentialTeacherService = referentialTeacherService;
 }