コード例 #1
0
 public CompanyService(
     IFAGBinaryRespository fagBinaryRespository,
     IFAGTextRespository fagTextRespository,
     ICompanyTypeRespository companyTypeRespository,
     ICountryRespository countryRespository,
     ICompanyRespository companyRespository,
     ICompanyMapper companyMapper,
     ILogger <ICompanyService> logger)
 {
     _fagBinaryRespository   = fagBinaryRespository;
     _fagTextRespository     = fagTextRespository;
     _companyTypeRespository = companyTypeRespository;
     _countryRespository     = countryRespository;
     _companyRespository     = companyRespository;
     _companyMapper          = companyMapper;
     _logger = logger;
 }
コード例 #2
0
 public CountryService(ICountryRespository countryRespository, ILogger <ICountryService> logger, ICountryMapper countryMapper)
 {
     _countryRespository = countryRespository;
     _logger             = logger;
     _countryMapper      = countryMapper;
 }
コード例 #3
0
 public AddCountryCommandHandler(ICountryRespository countryRespository, ICountryMapper countryMapper, ILogger <IRequest> logger)
 {
     _countryRespository = countryRespository;
     _countryMapper      = countryMapper;
     _logger             = logger;
 }
コード例 #4
0
 public CountryServiceImpl()
 {
     countryServ = Factory.GetInstance().GetCountryRepo();
 }
コード例 #5
0
 public CountryController(ICountryRespository countryRespository, IProvinceRespository provinceRespository, IMapper mapper)
 {
     _countryRespository  = countryRespository;
     _provinceRespository = provinceRespository;
     _mapper = mapper;
 }