public IEnumerable <DataStructure.News> GetTopNews(IConnectionHandler connectionHandler, int topCount, bool isSelected) { var newsDa = new NewsDA(connectionHandler); return(newsDa.GetTopNews(topCount, isSelected)); }