public RefillingViewPresenter(IRefillingView p_view, IRefillDao p_refillDao)
 {
     this.m_view = p_view;
     this.m_refillDao = p_refillDao;
     this.m_transTypeDao = new RefillTransactionTypeDao();
     this.m_customerDao = new CustomerDao();
     this.m_productDao = new RefillProductTypeDao();
     m_summaryDao = new RefillDaySummaryDao();
     m_customerInvDao = new RefillCustomerInventoryDao();
     m_refillInvDao = new RefillInventoryDao();
     m_refillInvDetailDao = new RefillInventoryDetailDao();
     m_printerDao = new PrinterDao();
     m_companyDao = new CompanyDao();
 }
 public RefillingConfigurationViewPresenter(IRefillingConfigurationView p_view)
 {
     this.m_view = p_view;
     this.m_productTypeDao = new RefillProductTypeDao();
     this.m_refillInvDao = new RefillInventoryDao();
 }