Пример #1
0
 public ProductService(CashierArmContext context) : base(context)
 {
     _storageRemainderService = new StorageRemainderService(context);
     _unitService             = new UnitService(context);
     _storageService          = new StorageService(context);
     _ruleSaleService         = new RuleSaleService(context);
 }
Пример #2
0
 public DocumentService(CashierArmContext context) : base(context)
 {
     _documentOperationService = new DocumentOperationService(context);
     _productOperationService  = new ProductOperationService(context);
 }
Пример #3
0
 public RuleSaleService(CashierArmContext context) : base(context)
 {
 }
Пример #4
0
 public StorageService(CashierArmContext context) : base(context)
 {
 }
 public ProductOperationService(CashierArmContext context) : base(context)
 {
     _storageRemainderService = new StorageRemainderService(context);
 }
 public DocumentOperationService(CashierArmContext context) : base(context)
 {
 }
Пример #7
0
 public StorageRemainderService(CashierArmContext context) : base(context)
 {
 }
 public OperationTypeService(CashierArmContext context) : base(context)
 {
 }
Пример #9
0
 public UnitService(CashierArmContext context) : base(context)
 {
 }
Пример #10
0
 public BaseService(CashierArmContext context)
 {
     Repository = context;
 }
Пример #11
0
 public DocumentTypeService(CashierArmContext context) : base(context)
 {
 }