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