Example #1
0
        static public void Delete(System.String customerID, esSqlAccessType sqlAccessType)
        {
            var obj = new Customers();

            obj.CustomerID = customerID;
            obj.AcceptChanges();
            obj.MarkAsDeleted();
            obj.Save(sqlAccessType);
        }