public IEnumerable <Tag> GetTagsOfArticle(int articleId) { try { return(tagRepo.GetTagsOfArticle(articleId)); } catch (DALException ex) { throw new ServiceException($"DAL exception : {ex.Message}"); } }