Exemplo n.º 1
0
 public TurnOverService(
     ISaleService saleService,
     IBaseObjectService <SaleProduct> saleProductService)
 {
     _saleService        = saleService;
     _saleProductService = saleProductService;
 }
Exemplo n.º 2
0
 public SalesAmountService(
     ISaleService saleService,
     IBaseObjectService <SaleProduct> saleProductService)
 {
     _saleService        = saleService;
     _saleProductService = saleProductService;
 }
Exemplo n.º 3
0
 public SaleController(ISaleService saleService,
                       IBaseObjectService <User> userService,
                       IBaseObjectService <SaleProduct> saleProductService,
                       IInfoMoneyService infoMoneyService,
                       IBaseObjectService <Partner> partnerService,
                       IBaseObjectService <ProductInformation> productInformationService,
                       IBaseObjectService <SupplyProduct> supplyProductService,
                       IBaseObjectService <Supplier> supplierService,
                       IBaseObjectService <Shop> shopService,
                       IMoneyOperationService moneyOperationService,
                       ShopContext db,
                       ISaleStatisticService saleStatisticService,
                       ISaleInfoService saleInfoService,
                       IProductOperationService productOperationService,
                       IBookingProductInformationService bookingProductInformationService,
                       PostgresContext postgresContext)
 {
     _saleService               = saleService;
     _userService               = userService;
     _saleProductService        = saleProductService;
     _infoMoneyService          = infoMoneyService;
     _partnerService            = partnerService;
     _productInformationService = productInformationService;
     _supplyProductService      = supplyProductService;
     _supplierService           = supplierService;
     _db                               = db;
     _shopService                      = shopService;
     _moneyOperationService            = moneyOperationService;
     _saleStatisticService             = saleStatisticService;
     _saleInfoService                  = saleInfoService;
     _productOperationService          = productOperationService;
     _bookingProductInformationService = bookingProductInformationService;
     _postgresContext                  = postgresContext;
 }
Exemplo n.º 4
0
 public PartnerController(IBaseObjectService <Partner> partnerService,
                          ISaleService saleService,
                          ShopContext db)
 {
     _partnerService = partnerService;
     _saleService    = saleService;
     _db             = db;
 }
Exemplo n.º 5
0
 public MoneyOperationService(IInfoMoneyService infoMoneyService,
                              IBaseObjectService <Expense> expenseService,
                              IBaseObjectService <MoneyWorker> moneyWorkerService)
 {
     _infoMoneyService   = infoMoneyService;
     _expenseService     = expenseService;
     _moneyWorkerService = moneyWorkerService;
 }
Exemplo n.º 6
0
 public ShopService(ShopContext context,
                    IInfoMoneyService infoMoneyService,
                    IBaseObjectService <User> userService) : base(context)
 {
     _context          = context;
     _infoMoneyService = infoMoneyService;
     _userService      = userService;
 }
Exemplo n.º 7
0
 public StatisticController(IBaseObjectService <Product> productService,
                            ISaleService saleService,
                            IBaseObjectService <SupplyProduct> supplyProductService)
 {
     _saleService          = saleService;
     _productService       = productService;
     _supplyProductService = supplyProductService;
 }
Exemplo n.º 8
0
 public SupplierController(IBaseObjectService <Supplier> supplierService,
                           IBaseObjectService <SupplyProduct> supplyProductService,
                           PostgresContext postgresContext,
                           ShopContext shopContext)
 {
     _supplierService      = supplierService;
     _supplyProductService = supplyProductService;
     _postgresContext      = postgresContext;
     _shopContext          = shopContext;
 }
Exemplo n.º 9
0
 public CardKeeperController(IBaseObjectService <CardKeeper> cardKeeperService,
                             IInfoMoneyService infoMoneyService,
                             ShopContext db,
                             PostgresContext postgresContext)
 {
     _cardKeeperService = cardKeeperService;
     _infoMoneyService  = infoMoneyService;
     _db = db;
     _postgresContext = postgresContext;
 }
Exemplo n.º 10
0
 public CalculatedScoreController(IBaseObjectService <CalculatedScore> calculatedScoreService,
                                  IInfoMoneyService infoMoneyService,
                                  ShopContext db,
                                  PostgresContext postgresContext)
 {
     _calculatedScoreService = calculatedScoreService;
     _infoMoneyService       = infoMoneyService;
     _db = db;
     _postgresContext = postgresContext;
 }
Exemplo n.º 11
0
 public SaleInfoService(IBaseObjectService <SaleProduct> saleProductService,
                        IBaseObjectService <Partner> partnerService,
                        ISaleService saleService,
                        IInfoMoneyService infoMoneyService)
 {
     _saleProductService = saleProductService;
     _parnterService     = partnerService;
     _saleService        = saleService;
     _infoMoneyService   = infoMoneyService;
 }
Exemplo n.º 12
0
 public SaleStatisticService(IBaseObjectService <Category> categoryService,
                             ISalesAmountService saleAmountService,
                             ITurnOverService turnOverService,
                             IMarginService marginService,
                             ISaleInfoService saleInfoService,
                             ISaleService saleService,
                             IBaseObjectService <InfoMoney> infoMoneyService)
 {
     _categoryService   = categoryService;
     _saleAmountService = saleAmountService;
     _turnOverService   = turnOverService;
     _marginService     = marginService;
     _saleInfoService   = saleInfoService;
     _saleService       = saleService;
     _infoMoneyService  = infoMoneyService;
 }
Exemplo n.º 13
0
 public ManagerController(IBaseObjectService <Partner> partnerService,
                          IBaseObjectService <User> userService,
                          ISaleService saleService,
                          IInfoMoneyService infoMoneyService,
                          IProductService productService,
                          IBaseObjectService <Booking> bookingService,
                          IShopService shopService,
                          IBaseObjectService <BookingProduct> bookingProductService,
                          IBaseObjectService <Category> categoryService,
                          IBaseObjectService <SupplyProduct> supplyProduct,
                          IBaseObjectService <SaleProduct> saleProductService,
                          IBaseObjectService <SaleInformation> saleInformationService,
                          IBaseObjectService <ExpenseCategory> expenseCategoryService,
                          IBaseObjectService <Expense> expenseService,
                          IBaseObjectService <ProductInformation> productInformation,
                          ShopContext db,
                          IProductOperationService productOperationService,
                          IMoneyOperationService moneyOperationService,
                          IMoneyStatisticService moneyStatisticService,
                          IBookingProductInformationService bookingProductInformationService,
                          ISaleInfoService saleInfoService,
                          PostgresContext postgresContext)
 {
     _partnerService          = partnerService;
     _userService             = userService;
     _saleService             = saleService;
     _infoMoneyService        = infoMoneyService;
     _productService          = productService;
     _bookingService          = bookingService;
     _shopService             = shopService;
     _bookingProductService   = bookingProductService;
     _categoryService         = categoryService;
     _supplyProduct           = supplyProduct;
     _saleProductService      = saleProductService;
     _saleInformationService  = saleInformationService;
     _expenseCategoryService  = expenseCategoryService;
     _expenseService          = expenseService;
     _productInformation      = productInformation;
     _productOperationService = productOperationService;
     _db = db;
     _moneyOperationService            = moneyOperationService;
     _moneyStatisticService            = moneyStatisticService;
     _bookingProductInformationService = bookingProductInformationService;
     _saleInfoService = saleInfoService;
     _postgresContext = postgresContext;
 }
Exemplo n.º 14
0
 public ProductService(ShopContext context,
                       IInfoMoneyService infoMoneyService,
                       IBaseObjectService <SupplyProduct> supplyProductService,
                       IBaseObjectService <Supplier> supplierService,
                       IBaseObjectService <BookingProduct> bookingProductsService,
                       IBaseObjectService <ProductInformation> productInformationService,
                       IBaseObjectService <Booking> bookingService,
                       PostgresContext postgresContext) : base(context)
 {
     _context                   = context;
     _infoMoneyService          = infoMoneyService;
     _supplyProductService      = supplyProductService;
     _supplierService           = supplierService;
     _productInformationService = productInformationService;
     _bookingProductService     = bookingProductsService;
     _bookingService            = bookingService;
     _postgresContext           = postgresContext;
 }
Exemplo n.º 15
0
 public ProductOperationService(IProductService productService,
                                IBaseObjectService <SupplyHistory> supplyHistory,
                                IBaseObjectService <SupplyProduct> supplyProductService,
                                IBaseObjectService <DeferredSupplyProduct> deferredSupplyProductService,
                                IInfoProductService infoProductService,
                                IBaseObjectService <Supplier> supplierService,
                                IBaseObjectService <ProductInformation> productInformationService,
                                PostgresContext postgresContext)
 {
     _productService               = productService;
     _supplyHistoryService         = supplyHistory;
     _supplyProductService         = supplyProductService;
     _deferredSupplyProductService = deferredSupplyProductService;
     _infoProductService           = infoProductService;
     _supplierService              = supplierService;
     _productInformationService    = productInformationService;
     _postgresContext              = postgresContext;
 }
Exemplo n.º 16
0
 public ProductController(IProductService productService,
                          IBaseObjectService <Category> categoryService,
                          IShopService shopService,
                          IBaseObjectService <SupplyProduct> supplierProductService,
                          IBaseObjectService <User> userService,
                          IBaseObjectService <BookingProduct> bookingProductService,
                          IProductOperationService productOperationService,
                          ShopContext db,
                          PostgresContext postgresContext)
 {
     _productService          = productService;
     _categoryService         = categoryService;
     _shopService             = shopService;
     _supplyProductService    = supplierProductService;
     _userService             = userService;
     _bookingProductService   = bookingProductService;
     _productOperationService = productOperationService;
     _db = db;
     _postgresContext = postgresContext;
 }
Exemplo n.º 17
0
 public SaleService(ShopContext context,
                    IInfoMoneyService infoMoneyService,
                    IBaseObjectService <SaleProduct> saleProductService,
                    IProductService productService,
                    IShopService shopService,
                    IBaseObjectService <SaleInformation> saleInformationService,
                    IBaseObjectService <MoneyWorker> moneyWorkerService,
                    IMoneyOperationService moneyOperationService,
                    IBaseObjectService <ProductInformation> productInformationService,
                    IProductOperationService productOperationService) : base(context)
 {
     _infoMoneyService          = infoMoneyService;
     _saleProductService        = saleProductService;
     _productService            = productService;
     _shopService               = shopService;
     _saleInformationService    = saleInformationService;
     _moneyWorkerService        = moneyWorkerService;
     _moneyOperationService     = moneyOperationService;
     _productOperationService   = productOperationService;
     _productInformationService = productInformationService;
 }
Exemplo n.º 18
0
 public FileService(IProductService productService,
                    IBaseObjectService <SupplyProduct> supplyProductService)
 {
     _productService       = productService;
     _supplyProductService = supplyProductService;
 }
Exemplo n.º 19
0
 public PrimeCostService(ISaleService saleService,
                         IBaseObjectService <ProductInformation> productInformationService)
 {
     _saleService = saleService;
     _productInformationService = productInformationService;
 }
Exemplo n.º 20
0
 public CategoryExpenseController(IBaseObjectService <ExpenseCategory> expenseCategoryService)
 {
     _expenseCategoryService = expenseCategoryService;
 }
Exemplo n.º 21
0
 public CategoryController(IBaseObjectService <Category> categoryService)
 {
     _categoryService = categoryService;
 }
Exemplo n.º 22
0
 public MoneyStatisticService(IBaseObjectService <Expense> expenseService,
                              IInfoMoneyService infoMoneyService)
 {
     _expenseService   = expenseService;
     _infoMoneyService = infoMoneyService;
 }
Exemplo n.º 23
0
 public InfoMoneyService(ShopContext context,
                         IBaseObjectService <MoneyTransfer> moneyTransferService) : base(context)
 {
     _moneyTransferService = moneyTransferService;
 }
Exemplo n.º 24
0
 public HomeController(IBaseObjectService <Sale> saleService)
 {
     _saleService = saleService;
 }
Exemplo n.º 25
0
 public BookingProductInformationService(IBaseObjectService <BookingProduct> bookingProductService)
 {
     _bookingProductService = bookingProductService;
 }
Exemplo n.º 26
0
 public UserController(IBaseObjectService <User> userService, IShopService shopService)
 {
     _userService = userService;
     _shopService = shopService;
 }