public void delCustomer(int delcustomer)
 {
     CustomerPaymentStoredProcedure objdelpayment = new CustomerPaymentStoredProcedure();
     objdelpayment.delPayment(delcustomer);
 }
        public void InsertUpdateBookingPaymentDetail(ArrayList Payment)
        {

            CustomerPaymentStoredProcedure objpayment = new CustomerPaymentStoredProcedure();
            Payment.Insert(18, Session["usersid"].ToString());
            objpayment.InsertUpdateBookingPaymentDetail(Payment);
        }
 public void delPayment(int Payment)
 {
     CustomerPaymentStoredProcedure objdelpayment = new CustomerPaymentStoredProcedure();
     objdelpayment.delPayment(Payment);
 }
 public void InsertNewpayment(string paymentid, string recivedby, string pdate, string rdate)
 {
     CustomerPaymentStoredProcedure objinsertnew = new CustomerPaymentStoredProcedure();
     objinsertnew.InsertNewpayment(paymentid,recivedby,pdate,rdate);
 }