Beispiel #1
0
 public bool Delete(EL.REGISTRATIONS.customers customerEL)
 {
     return(customerDL.Delete(customerEL));
 }
Beispiel #2
0
 public bool Delete(EL.REGISTRATIONS.customers customerEL)
 {
     return(Helper.executeNonQueryBool("DELETE FROM customers WHERE customerid = '" + customerEL.Customerid + "' "));
 }
Beispiel #3
0
 public long Insert(EL.REGISTRATIONS.customers customerEL)
 {
     return(customerDL.Insert(customerEL));
 }
Beispiel #4
0
 public long Insert(EL.REGISTRATIONS.customers customerEL)
 {
     return(Helper.executeNonQueryLong("INSERT INTO customers (basicinformationid, dateregistered) VALUES ('" + customerEL.Basicinformationid + "', '" + DateTime.Now.ToString("yy-MM-dd") + "')"));
 }