示例#1
0
 public CompanyService(
     ICompanyRepository companyRepository,
     IMapper mapper,
     IBillingCardService billingCardService,
     IBillingCustomerService billingCustomerService,
     IBillingChargeService billingChargeService)
 {
     _companyRepository      = companyRepository;
     _mapper                 = mapper;
     _billingCardService     = billingCardService;
     _billingCustomerService = billingCustomerService;
     _billingChargeService   = billingChargeService;
 }
示例#2
0
 public CompanyService(
     ICompanyRepository companyRepository,
     IMapper mapper,
     IBillingCardService billingCardService,
     IBillingCustomerService billingCustomerService,
     IBillingChargeService billingChargeService)
 {
     _companyRepository = companyRepository;
     _mapper = mapper;
     _billingCardService = billingCardService;
     _billingCustomerService = billingCustomerService;
     _billingChargeService = billingChargeService;
 }