Ejemplo n.º 1
0
        public int DeleteCodeItem(int id)
        {
            int count = CodeItemRepository.Delete(id);

            CleanCache();
            return(count);
        }
Ejemplo n.º 2
0
        public int DeleteCodeCategory(int id)
        {
            UnitOfWork.TransactionEnabled = true;
            int count = CodeCategoryRepository.Delete(id);

            CodeItemRepository.Delete(c => c.CategoryID.Equals(id));
            UnitOfWork.SaveChanges();
            UnitOfWork.TransactionEnabled = false;
            CleanCache();
            return(count);
        }