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