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

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