public DataTable BillingSelect(payment_Prop paymentprop) { try { paymentdal = new payment_dal(); DataTable dt = paymentdal.BillingSelect(paymentprop); return(dt); } catch (Exception e) { ErrMessage = e.Message; return(null); } }
public string checkclosedtrasction(payment_Prop paymentprop) { try { paymentdal = new payment_dal(); string strMsg = paymentdal.checkclosedtrasction(paymentprop); return(strMsg); } catch (Exception e) { ErrMessage = e.Message; return(""); } }
public string PaymentDelete(payment_Prop paymentprop) { try { paymentdal = new payment_dal(); string strMsg = paymentdal.PaymentDelete(paymentprop); return(strMsg); } catch (Exception e) { ErrMessage = e.Message; return(""); } }
public DataTable PaymentClosedTransaction(payment_Prop paymentprop) { try { paymentdal = new payment_dal(); DataTable dt = paymentdal.PaymentCloseTransaction(paymentprop); return(dt); } catch (Exception e) { ErrMessage = e.Message; return(null); } }
public DataTable PaymentUserSummary(payment_Prop paymentprop) { try { paymentdal = new payment_dal(); DataTable dt = paymentdal.PaymentUserSummary(paymentprop); return(dt); } catch (Exception e) { ErrMessage = e.Message; return(null); } }
public DataTable PaymentDeleteMultiple() { try { paymentdal = new payment_dal(); DataTable dt = paymentdal.PaymentDeleteMultiple(); return(dt); } catch (Exception e) { ErrMessage = e.Message; return(null); } }
public DataTable PaymentChequeSelect_new(payment_Prop paymentprop) { try { paymentdal = new payment_dal(); DataTable dt = paymentdal.PaymentChequeSelect_new(paymentprop); return(dt); } catch (Exception e) { ErrMessage = e.Message; return(null); } }
public string PaymentChangeDuedate(payment_Prop paymentprop) { try { paymentdal = new payment_dal(); string dt = paymentdal.PaymentChangeDuedate(paymentprop); return(dt); } catch (Exception e) { ErrMessage = e.Message; return(null); } }