Beispiel #1
0
 public OrderController(PwnedShopDb db)
 {
     this.db = db;
 }
 public CartController(PwnedShopDb db, ILogger <CartController> logger)
 {
     this.db = db;
     _logger = logger;
 }
Beispiel #3
0
 public ProductController(PwnedShopDb db)
 {
     this.db = db;
 }
Beispiel #4
0
 public AccountController(PwnedShopDb db, ILogger <AccountController> logger)
 {
     this.db = db;
     _logger = logger;
 }