示例#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)
 {
 }