public ProductService(CashierArmContext context) : base(context) { _storageRemainderService = new StorageRemainderService(context); _unitService = new UnitService(context); _storageService = new StorageService(context); _ruleSaleService = new RuleSaleService(context); }
public DocumentService(CashierArmContext context) : base(context) { _documentOperationService = new DocumentOperationService(context); _productOperationService = new ProductOperationService(context); }
public RuleSaleService(CashierArmContext context) : base(context) { }
public StorageService(CashierArmContext context) : base(context) { }
public ProductOperationService(CashierArmContext context) : base(context) { _storageRemainderService = new StorageRemainderService(context); }
public DocumentOperationService(CashierArmContext context) : base(context) { }
public StorageRemainderService(CashierArmContext context) : base(context) { }
public OperationTypeService(CashierArmContext context) : base(context) { }
public UnitService(CashierArmContext context) : base(context) { }
public BaseService(CashierArmContext context) { Repository = context; }
public DocumentTypeService(CashierArmContext context) : base(context) { }