Пример #1
0
 public MerchantService(IMerchantRepository MerchantRepository, IMerchantConfigService merchantConfigService, IKycService kycService)
 {
     this._MerchantRepository    = MerchantRepository;
     this._merchantConfigService = merchantConfigService;
     this._kycService            = kycService;
 }
Пример #2
0
 public MerchantsController(ConfigDbContext context, IMerchantConfigService merchantConfigService)
 {
     _context = context;
     _merchantConfigService = merchantConfigService;
 }
Пример #3
0
 public MerchantConfigController(IMerchantConfigService _MerchantConfigService)
 {
     MerchantConfigService = _MerchantConfigService;
 }