Beispiel #1
0
        static public void Delete(System.Int32 storeId, System.String name, esSqlAccessType sqlAccessType)
        {
            var obj = new StoreSetting();

            obj.StoreId = storeId;
            obj.Name    = name;
            obj.AcceptChanges();
            obj.MarkAsDeleted();
            obj.Save(sqlAccessType);
        }