public StockManagerImpl(StockManager stockManager)
 {
     this.stockManager        = stockManager;
     stockLocationDao         = StockLocationDao.getInstance();
     stockItemDao             = StockItemDao.getInstance();
     itemManagerImpl          = new ItemManagerImpl();
     buyingInvoiceManagerImpl = new BuyingInvoiceManagerImpl();
 }
 public CompanyReturnManagerImpl(AddCompanyReturn addCompanyReturn)
 {
     this.addCompanyReturn = addCompanyReturn;
     dao             = CompanyReturnDao.getInstance();
     itemManagerImpl = new ItemManagerImpl();
     //sellingPriceManagerImpl = new SellingPriceManagerImpl();
     stockManagerImpl         = new StockManagerImpl();
     buyingInvoiceManagerImpl = new BuyingInvoiceManagerImpl();
 }
Exemple #3
0
 public BuyingInvoiceManagerControler(AddBuyingInvoice addBuyingInvoice)
 {
     buyingInvoiceManagerImpl = new BuyingInvoiceManagerImpl(addBuyingInvoice);
     this.addBuyingInvoice    = addBuyingInvoice;
 }
Exemple #4
0
 public BuyingInvoiceManagerControler()
 {
     buyingInvoiceManagerImpl = new BuyingInvoiceManagerImpl();
 }
Exemple #5
0
 public BuyingItemHistoryControler(BuyingItemHistory buyingItemHistory)
 {
     this.buyingItemHistory   = buyingItemHistory;
     buyingInvoiceManagerImpl = new BuyingInvoiceManagerImpl(buyingItemHistory);
 }
 public StockByPriceManagerImpl(StockByPrice stockByPrice)
 {
     this.stockByPrice        = stockByPrice;
     buyingInvoiceManagerImpl = new BuyingInvoiceManagerImpl();
     stockManagerImpl         = new StockManagerImpl();
 }