Exemplo n.º 1
0
        public LabelRepository(IWebShopContext webShopContext)
        {
            if (webShopContext == null)
            {
                throw new ArgumentNullException(nameof(webShopContext));
            }

            _labelAlias = webShopContext.LabelsAlias;
        }
Exemplo n.º 2
0
 public ShoppingCartRepository(IWebShopContext webShopContext)
 {
     this.webShopContext = webShopContext;
 }
Exemplo n.º 3
0
 public ProductRepository(IWebShopContext webShopContext)
 {
     this.webShopContext = webShopContext;
 }
Exemplo n.º 4
0
 public CategoryRepository(IWebShopContext webShopContext)
 {
     this.webShopContext = webShopContext;
 }
Exemplo n.º 5
0
 public ProfileTypeRepository(IWebShopContext webShopContext)
 {
     this.webShopContext = webShopContext;
 }