public ReportViewPresenter(IReportView p_view)
 {
     this.m_view = p_view;
     m_customerDao = new CustomerDao();
     m_laundryReportDao = new LaundryReportDao();
     m_refillReportDao = new RefillReportDao();
 }
 public RefillingReturnPaymentPresenter(IRefillReturnPaymentView m_view)
 {
     this.m_view = m_view;
     m_customerDao = new CustomerDao();
     m_refillDao = new RefillDao();
     m_refillReportDao = new RefillReportDao();
     m_custInvDao = new RefillCustomerInventoryDao();
     m_daysummaryDao = new RefillDaySummaryDao();
     m_invDao = new RefillInventoryDao();
     customer = new CustomerDataEntity();
     custInv = new RefillCustInventoryHeaderDataEntity();
 }