Beispiel #1
0
 public bool Delete(EL.Registrations.Customers customerEL)
 {
     return(Helper.executeNonQueryBool("delete from customers where customerid = '" + customerEL.Customerid + "' "));
 }
 public bool Delete(EL.Registrations.Customers customerEL)
 {
     return(CustomerDL.Delete(customerEL));
 }
Beispiel #3
0
 public long Insert(EL.Registrations.Customers customerEL)
 {
     return(Helper.executeNonQueryLong("insert into customers (contactdetailid, basicinformationid) values ('" + customerEL.Contactdetailid + "', '" + customerEL.Basicinformationid + "')"));
 }
 public long Insert(EL.Registrations.Customers customerEL)
 {
     return(CustomerDL.Insert(customerEL));
 }