public ReportViewPresenter(IReportView p_view)
 {
     this.m_view = p_view;
     m_customerDao = new CustomerDao();
     m_laundryReportDao = new LaundryReportDao();
     m_refillReportDao = new RefillReportDao();
 }
        public LaundryCustomerSearchViewPresenter(ILaundryCustomerSearchView p_view, 		                                        
		                                         CustomerDataEntity p_customer)
        {
            m_view = p_view;
            m_dao = new LaundryReportDao();
            m_customer = p_customer;
        }