Beispiel #1
0
 public SweetStorageService(SweetLifeDbContext context)
 {
     _context = context;
 }
Beispiel #2
0
 public FactoryService(SweetLifeDbContext context)
 {
     _context            = context;
     _factoryUnitService = new FactoryUnitService(context);
 }
 public ManufacturingOrderService(SweetLifeDbContext context)
 {
     _context = context;
 }
Beispiel #4
0
 public IngredientService(SweetLifeDbContext context)
 {
     _context        = context;
     _factoryService = new FactoryService(context);
 }
Beispiel #5
0
 public UserService(SweetLifeDbContext context)
 {
     _context = context;
 }
Beispiel #6
0
 public IngredientStorageService(SweetLifeDbContext context)
 {
     _context = context;
 }
Beispiel #7
0
 public FactoryUnitService(SweetLifeDbContext context)
 {
     _context = context;
 }
Beispiel #8
0
 public UnitWorkerService(SweetLifeDbContext sweetLifeDbContext)
 {
     _context = sweetLifeDbContext;
 }
Beispiel #9
0
 public CategoryService(SweetLifeDbContext context)
 {
     _context = context;
 }
Beispiel #10
0
 public MeasurementUnitService(SweetLifeDbContext context)
 {
     _context = context;
 }