public bool Update_RetnAmount()
 {
     objColMasterDAL = new Collection_Master_DAL(objColMasterProperty);
     return(objColMasterDAL.Update_RetnAmount());
 }
 public DataTable GetOutstandingCashMemoForDailyTran(SqlDateTime DateFrom, SqlDateTime DateTo)
 {
     objColMasterDAL = new Collection_Master_DAL(objColMasterProperty);
     return(objColMasterDAL.GetOutstandingCashMemoForDailyTran(DateFrom, DateTo));
 }
 public DataTable GetChequeStatusDetail(SqlDateTime DateFrom, SqlDateTime DateTo, String Chequestatus)
 {
     objColMasterDAL = new Collection_Master_DAL(objColMasterProperty);
     return(objColMasterDAL.GetChequeStatusDetail(DateFrom, DateTo, Chequestatus));
 }
 public DataTable ViewCreditCollection(SqlDateTime DateFrom, SqlDateTime DateTo)
 {
     objColMasterDAL = new Collection_Master_DAL(objColMasterProperty);
     return(objColMasterDAL.SelectCreditCollection(DateFrom, DateTo));
 }
 public bool UpdateMasterAndDetails(DataTable updatedMastersData, List <List <object> > DetailsData)
 {
     objColMasterDAL = new Collection_Master_DAL(objColMasterProperty);
     return(objColMasterDAL.UpdateMasterAndDetails(updatedMastersData, DetailsData));
 }
 public bool ADD()
 {
     objColMasterDAL = new Collection_Master_DAL(objColMasterProperty);
     return(objColMasterDAL.Insert());
 }
 public DataTable View()
 {
     objColMasterDAL = new Collection_Master_DAL(objColMasterProperty);
     return(objColMasterDAL.SelectOne());
 }
 public DataTable ViewAllForDailyTran()
 {
     objColMasterDAL = new Collection_Master_DAL(objColMasterProperty);
     return(objColMasterDAL.SelectAllForDailyTran());
 }