public DailyInitialCashManagerImpl(DailyInitialCashManager dailyInitialCashManager)
 {
     this.dailyInitialCashManager = dailyInitialCashManager;
     dao = DailyInitialCashDao.getInstance();
     paymentManagerImpl        = new PaymentManagerImpl();
     expenseManagerImpl        = new ExpenseManagerImpl();
     sellingInvoiceManagerImpl = new SellingInvoiceManagerImpl();
 }
 public ReportManagerImpl(SellingChequeReport sellingChequeReport)
 {
     this.sellingChequeReport = sellingChequeReport;
     paymentManagerImpl       = new PaymentManagerImpl();
     bankManagerImpl          = new BankManagerImpl();
 }
 public ReportManagerImpl(BuyingChequeRreport buyingChequeRreport)
 {
     this.buyingChequeRreport = buyingChequeRreport;
     paymentManagerImpl       = new PaymentManagerImpl();
     bankManagerImpl          = new BankManagerImpl();
 }
 public ReportManagerImpl(DailySale dailySale)
 {
     this.dailySale            = dailySale;
     sellingInvoiceManagerImpl = new SellingInvoiceManagerImpl();
     paymentManagerImpl        = new PaymentManagerImpl();
 }
 public PaymentManagerControler(AddSellingInvoicePayment addSellingInvoicePayment)
 {
     this.addSellingInvoicePayment = addSellingInvoicePayment;
     paymentManagerImpl            = new PaymentManagerImpl(addSellingInvoicePayment);
 }
 public PaymentManagerControler(PaymentSection paymentSection)
 {
     this.paymentSection = paymentSection;
     paymentManagerImpl  = new PaymentManagerImpl(paymentSection);
 }
Esempio n. 7
0
 public ChequeManagerImpl(ChequeManager chequeManager)
 {
     this.chequeManager = chequeManager;
     paymentManagerImpl = new PaymentManagerImpl();
     bankManagerImpl    = new BankManagerImpl();
 }