public List <ArticleBLL> ArticlesGetRelatedToEventName(int Skip, int Take, string EventName) { List <ArticleBLL> proposedReturnValue = new List <ArticleBLL>(); List <ArticleDAL> items = _context.ArticlesGetRelatedToEventName(Skip, Take, EventName); foreach (ArticleDAL item in items) { ArticleBLL correctedItem = new ArticleBLL(item); proposedReturnValue.Add(correctedItem); } return(proposedReturnValue); }