public void DeleteNews(NewsItem item) { if (item == null) { throw new NullReferenceException(nameof(item)); } _newsRepository.Delete(item); }