Beispiel #1
0
 public OrderService(SolarDbContex db, ILogger <OrderService> logger, IProductService prodServe, IInventoryService invServe)
 {
     _db               = db;
     _logger           = logger;
     _productService   = prodServe;
     _inventoryService = invServe;
 }
Beispiel #2
0
 public ProductService(SolarDbContex db)
 {
     _db = db;
 }
Beispiel #3
0
 public CustomerService(SolarDbContex db)
 {
     _db = db;
 }
Beispiel #4
0
 public InventoryService(SolarDbContex db, ILogger <InventoryService> logger)
 {
     _db     = db;
     _logger = logger;
 }