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