Esempio n. 1
0
 public OrganizationController
 (
     IAccountTypeRepository accountTypeRepository,
     IUserRepository userRepository,
     IEventRepository eventRepository,
     IEventCategoryRepository eventCategoryRepository,
     IStudentRepository studentRepository,
     IJudgeRepository judgeRepository,
     IOrganizationRepository organizationRepository,
     IJobPostRepository jobPostRepository,
     IJobCategoryRepository JobCategoryRepository,
     IJobApplyActivityRepository jobApplyActivityRepository
 )
 {
     this.accountTypeRepository      = accountTypeRepository;
     this.userRepository             = userRepository;
     this.eventRepository            = eventRepository;
     this.eventCategoryRepository    = eventCategoryRepository;
     this.studentRepository          = studentRepository;
     this.judgeRepository            = judgeRepository;
     this.organizationRepository     = organizationRepository;
     this.jobPostRepository          = jobPostRepository;
     this.JobCategoryRepository      = JobCategoryRepository;
     this.jobApplyActivityRepository = jobApplyActivityRepository;
 }
 public GetJudgesInListQueryHandler(IMapper mapper,
                                    IJudgeRepository judgeRepository,
                                    IZEsJudgeRepository zEsjudgeRepository)
 {
     _mapper             = mapper;
     _judgeRepository    = judgeRepository;
     _zEsjudgeRepository = zEsjudgeRepository;
 }
 public RejectCallForSpeechCommandHandler(ICallForSpeechRepository callRepository,
                                          IJudgeRepository judegRepository, IMapper mapper
                                          )
 {
     _callRepository  = callRepository;
     _judegRepository = judegRepository;
     _mapper          = mapper;
 }
 public PreliminaryAcceptCallForSpeechCommandHandler(ICallForSpeechRepository callRepository,
                                                     IJudgeRepository judegRepository, IMapper mapper
                                                     )
 {
     _callRepository  = callRepository;
     _judegRepository = judegRepository;
     _mapper          = mapper;
 }
Esempio n. 5
0
 public UsersController(IAccountTypeRepository accountTypeRepository,
                        IUserRepository userRepository, IEventRepository eventRepository,
                        IEventCategoryRepository eventCategoryRepository, IStudentRepository studentRepository,
                        IJudgeRepository judgeRepository, IOrganizationRepository organizationRepository)
 {
     this.accountTypeRepository   = accountTypeRepository;
     this.userRepository          = userRepository;
     this.eventRepository         = eventRepository;
     this.eventCategoryRepository = eventCategoryRepository;
     this.studentRepository       = studentRepository;
     this.judgeRepository         = judgeRepository;
     this.organizationRepository  = organizationRepository;
 }
Esempio n. 6
0
 public JudgeController
 (
     IAccountTypeRepository accountTypeRepository,
     IUserRepository userRepository,
     IEventRepository eventRepository,
     IEventCategoryRepository eventCategoryRepository,
     IStudentRepository studentRepository,
     IJudgeRepository judgeRepository,
     IOrganizationRepository organizationRepository,
     IProjectRepository projectRepository,
     IRatingRepository ratingRepository
 )
 {
     this.projectRepository       = projectRepository;
     this.accountTypeRepository   = accountTypeRepository;
     this.userRepository          = userRepository;
     this.eventRepository         = eventRepository;
     this.eventCategoryRepository = eventCategoryRepository;
     this.studentRepository       = studentRepository;
     this.judgeRepository         = judgeRepository;
     this.organizationRepository  = organizationRepository;
     this.ratingRepository        = ratingRepository;
 }
 public DeleteJudgeCommandHandler(IJudgeRepository judgeRepository,
                                  IMapper mapper)
 {
     _mapper          = mapper;
     _judgeRepository = judgeRepository;
 }