コード例 #1
0
        public LabelRepository(IWebShopContext webShopContext)
        {
            if (webShopContext == null)
            {
                throw new ArgumentNullException(nameof(webShopContext));
            }

            _labelAlias = webShopContext.LabelsAlias;
        }
コード例 #2
0
 public ShoppingCartRepository(IWebShopContext webShopContext)
 {
     this.webShopContext = webShopContext;
 }
コード例 #3
0
 public ProductRepository(IWebShopContext webShopContext)
 {
     this.webShopContext = webShopContext;
 }
コード例 #4
0
 public CategoryRepository(IWebShopContext webShopContext)
 {
     this.webShopContext = webShopContext;
 }
コード例 #5
0
 public ProfileTypeRepository(IWebShopContext webShopContext)
 {
     this.webShopContext = webShopContext;
 }