Ejemplo n.º 1
0
        public void Delete(string id)
        {
            Guid        guid;
            ProductItem item = null;

            if (Guid.TryParse(id, out guid))
            {
                item = _ProductItemRepo.Get(guid);
                _ProductItemRepo.Remove(item);
            }
        }