public LabelRepository(IWebShopContext webShopContext)
        {
            if (webShopContext == null)
            {
                throw new ArgumentNullException(nameof(webShopContext));
            }

            _labelAlias = webShopContext.LabelsAlias;
        }
 public ShoppingCartRepository(IWebShopContext webShopContext)
 {
     this.webShopContext = webShopContext;
 }
Exemple #3
0
 public ProductRepository(IWebShopContext webShopContext)
 {
     this.webShopContext = webShopContext;
 }
Exemple #4
0
 public CategoryRepository(IWebShopContext webShopContext)
 {
     this.webShopContext = webShopContext;
 }
Exemple #5
0
 public ProfileTypeRepository(IWebShopContext webShopContext)
 {
     this.webShopContext = webShopContext;
 }