Esempio n. 1
0
        static public void Delete(System.String customerID, System.String customerSub, esSqlAccessType sqlAccessType)
        {
            var obj = new Customer();

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