public MerchantService(IMerchantRepository MerchantRepository, IMerchantConfigService merchantConfigService, IKycService kycService) { this._MerchantRepository = MerchantRepository; this._merchantConfigService = merchantConfigService; this._kycService = kycService; }
public MerchantsController(ConfigDbContext context, IMerchantConfigService merchantConfigService) { _context = context; _merchantConfigService = merchantConfigService; }
public MerchantConfigController(IMerchantConfigService _MerchantConfigService) { MerchantConfigService = _MerchantConfigService; }