コード例 #1
0
 public VendorServiceCapabilityRatingController(IVendorRepository vendorRepository, IVendorServiceCategoryRepository vendorservicecategoryRepository, IRatingScaleRepository ratingscaleRepository, IVendorServiceCapabilityRatingRepository vendorservicecapabilityratingRepository)
 {
     this.vendorRepository = vendorRepository;
     this.vendorservicecategoryRepository = vendorservicecategoryRepository;
     this.ratingscaleRepository = ratingscaleRepository;
     this.vendorservicecapabilityratingRepository = vendorservicecapabilityratingRepository;
 }
 public RequisitionSkillsExpertiseEducationMatchingMatricesController(IRequisitionRepository requisitionRepository, ISkillsExpEduCategoryRepository skillsexpeducategoryRepository, ISkillsExpEduRepository skillsexpeduRepository, IRatingScaleRepository ratingscaleRepository, IRequisitionSkillsExpertiseEducationMatchingMatrixRepository requisitionskillsexpertiseeducationmatchingmatrixRepository)
 {
     this.requisitionRepository = requisitionRepository;
     this.skillsexpeducategoryRepository = skillsexpeducategoryRepository;
     this.skillsexpeduRepository = skillsexpeduRepository;
     this.ratingscaleRepository = ratingscaleRepository;
     this.requisitionskillsexpertiseeducationmatchingmatrixRepository = requisitionskillsexpertiseeducationmatchingmatrixRepository;
 }
コード例 #3
0
 public ApplicantSkillsExpertisesController(IApplicantRepository applicantRepository, ISkillsExpEduCategoryRepository skillsexpeducategoryRepository, ISkillsExpEduRepository skillsexpeduRepository, IRatingScaleRepository ratingscaleRepository, IUserRepository userRepository, IApplicantSkillsExpertiseRepository applicantskillsexpertiseRepository)
 {
     this.applicantRepository = applicantRepository;
     this.skillsexpeducategoryRepository = skillsexpeducategoryRepository;
     this.skillsexpeduRepository = skillsexpeduRepository;
     this.ratingscaleRepository = ratingscaleRepository;
     this.userRepository = userRepository;
     this.applicantskillsexpertiseRepository = applicantskillsexpertiseRepository;
 }
コード例 #4
0
ファイル: ContactsController.cs プロジェクト: absdk/RslSDK
 public ContactsController(ICompanyRepository companyRepository, ICountryRepository countryRepository, IStateRepository stateRepository, IContactProfessionTypeRepository contactprofessiontypeRepository, IRatingScaleRepository ratingscaleRepository, IUserRepository userRepository, IContactRepository contactRepository)
 {
     this.companyRepository = companyRepository;
     this.countryRepository = countryRepository;
     this.stateRepository = stateRepository;
     this.contactprofessiontypeRepository = contactprofessiontypeRepository;
     this.ratingscaleRepository = ratingscaleRepository;
     this.userRepository = userRepository;
     this.contactRepository = contactRepository;
 }
コード例 #5
0
ファイル: RatingScaleController.cs プロジェクト: absdk/RslSDK
 public RatingScaleController(IRatingScaleRepository ratingscaleRepository)
 {
     this.ratingscaleRepository = ratingscaleRepository;
 }
コード例 #6
0
 public VendorRatingController(IVendorRepository vendorRepository, IRatingScaleRepository ratingscaleRepository, IVendorRatingRepository vendorratingRepository)
 {
     this.vendorRepository = vendorRepository;
     this.ratingscaleRepository = ratingscaleRepository;
     this.vendorratingRepository = vendorratingRepository;
 }