Ejemplo n.º 1
0
        public void DeleteCust(string custID)
        {
            DBservices db = new DBservices();

            db.DeleteCust(custID);
        }
Ejemplo n.º 2
0
 public void DeleteCust(int custID)
 {
     DBservices db          = new DBservices();
     int        numAffected = db.DeleteCust(custID);
 }