public NewsItem GetNewsItem(string itemId) { if (string.IsNullOrEmpty(itemId)) { return(null); } return(_newsRepository.Get(itemId)); }