public BannerService(BannerRepository repository, LookupTypeValuesService LookupTypeValuesService,
                      IHttpContextAccessor httpContextAccessor, MerchantBannerService MerchantBannerService) : base(repository, httpContextAccessor)
 {
     _MerchantBannerService = MerchantBannerService;
     //_BannerService = BannerService;
     _LookupTypeValuesService = LookupTypeValuesService;
 }
Beispiel #2
0
 public MerchantService(MerchantRepository repository,
                        IHttpContextAccessor httpContextAccessor, LookupTypeValuesService LookupTypeValuesService, MerchantCategoryService MerchantCategoryService, MerchantSellCountriesService MerchantSellCountriesService) : base(repository, httpContextAccessor)
 {
     _LookupTypeValuesService      = LookupTypeValuesService;
     _MerchantCategoryService      = MerchantCategoryService;
     _MerchantSellCountriesService = MerchantSellCountriesService;
 }
Beispiel #3
0
 public AdminPromotionalService(AdminPromotionalRepository repository, AdminPromotionalCountriesService AdminPromotionalCountriesService, LookupTypeValuesService LookupTypeValuesService,
                                IHttpContextAccessor httpContextAccessor) : base(repository, httpContextAccessor)
 {
     _AdminPromotionalCountriesService = AdminPromotionalCountriesService;
     _LookupTypeValuesService          = LookupTypeValuesService;
 }
 public DealsService(DealsRepository repository, LookupTypeValuesService LookupTypeValuesService,
                     IHttpContextAccessor httpContextAccessor, MerchantDealService MerchantDealService) : base(repository, httpContextAccessor)
 {
     _MerchantDealService     = MerchantDealService;
     _LookupTypeValuesService = LookupTypeValuesService;
 }
Beispiel #5
0
 public MerchantCategoryService(MerchantCategoryRepository repository, MerchantCatalogService MerchantCatalogService, LookupTypeValuesService LookupTypeValuesService,
                                IHttpContextAccessor httpContextAccessor) : base(repository, httpContextAccessor)
 {
     _MerchantCatalogService  = MerchantCatalogService;
     _LookupTypeValuesService = LookupTypeValuesService;
 }
 public MerchantRequestService(MerchantRequestRepository repository,
                               IHttpContextAccessor httpContextAccessor, LookupTypeValuesService LookupTypeValuesService) : base(repository, httpContextAccessor)
 {
     _LookupTypeValuesService = LookupTypeValuesService;
 }
 public CategoryService(CategoryRepository repository, LookupTypeValuesService LookupTypeValuesService,
                        IHttpContextAccessor httpContextAccessor) : base(repository, httpContextAccessor)
 {
     _LookupTypeValuesService = LookupTypeValuesService;
 }