Exemplo n.º 1
0
        public virtual void Delete(AbstractPersistenceObject element)
        {
            if (element == null)
            {
                return;
            }

            if (element.Key == null)
            {
                return;
            }

            _ps.DeleteObject(ObjectTypeName, element);
        }