public MerchantController(MerchantService MerchantService, UsersService UsersService, MerchantCategoryService MerchantCategoryService, MerchantRedirectionService MerchantRedirectionService, MerchantContractService MerchantContractService, IConfiguration configuration , MerchantSellCountriesService MerchantSellCountriesService, MerchantRequestService MerchantRequestService, MerchantRequestDetailsService MerchantRequestDetailsService, IEmailService emailService, MerchantAccountDetailsService MerchantAccountDetailsService) { _MerchantService = MerchantService; _UsersService = UsersService; _MerchantCategoryService = MerchantCategoryService; _MerchantRedirectionService = MerchantRedirectionService; _MerchantContractService = MerchantContractService; _configuration = configuration; _emailService = emailService; _MerchantSellCountriesService = MerchantSellCountriesService; _MerchantRequestService = MerchantRequestService; _MerchantRequestDetailsService = MerchantRequestDetailsService; _MerchantAccountDetailsService = MerchantAccountDetailsService; }
public MerchantCatalogController(MerchantCatalogService MerchantCatalogService, CategoryService CategoryService, MerchantCategoryService MerchantCategoryService) { _MerchantCatalogService = MerchantCatalogService; _CategoryService = CategoryService; _MerchantCategoryService = MerchantCategoryService; }