コード例 #1
0
 public ModeratorProductService(TechShopDbContext db, IAdminCategoryService categories)
 {
     this.db         = db;
     this.categories = categories;
 }
コード例 #2
0
ファイル: ProductService.cs プロジェクト: Temelakiev/TechShop
 public ProductService(TechShopDbContext db)
 {
     this.db = db;
 }
コード例 #3
0
 public AdminCategoryService(TechShopDbContext db)
 {
     this.db = db;
 }
コード例 #4
0
 public AdminUserService(TechShopDbContext db)
 {
     this.db = db;
 }
コード例 #5
0
 public ShoppingCartManager(TechShopDbContext db)
 {
     this.db    = db;
     this.carts = new ConcurrentDictionary <string, ShoppingCart>();
 }
コード例 #6
0
 public ShoppingCartController(IShoppingCartManager shoppingCartManager, TechShopDbContext db, UserManager <User> userManager)
 {
     this.shoppingCartManager = shoppingCartManager;
     this.db          = db;
     this.userManager = userManager;
 }
コード例 #7
0
ファイル: CommentService.cs プロジェクト: Temelakiev/TechShop
 public CommentService(TechShopDbContext db, IProductService products)
 {
     this.db       = db;
     this.products = products;
 }