コード例 #1
0
 public ProductCategoryController(IRepoistory <ProductCategory> context)
 {
     this.context = context;
 }
コード例 #2
0
 public CustomerService(IUnitOfWork uow, IRepoistory <Customer> repositoryCustomer)
 {
     this.unitOfWork         = uow;
     this.repositoryCustomer = repositoryCustomer;
 }
コード例 #3
0
ファイル: HomeController.cs プロジェクト: Nawinav/Shopping.UI
 public HomeController(IRepoistory <Product> context, IRepoistory <ProductCategory> productCategories)
 {
     this.context           = context;
     this.productCategories = productCategories;
 }
コード例 #4
0
 public BasketService(IRepoistory <Product> ProductContext, IRepoistory <Basket> BasketContext)
 {
     this.productContext = ProductContext;
     this.basketContext  = BasketContext;
 }