TeamMentor.CoreLib.TM_WebServices.SetArticleContent C# (CSharp) Method

SetArticleContent() private method

private SetArticleContent ( System.Guid articleId, string dataType, string content ) : bool
articleId System.Guid
dataType string
content string
return bool
        public bool SetArticleContent(Guid articleId, string dataType,  string content)
        {
            editArticles.demand();
                                                                resetCache();
                                                                var article = GetGuidanceItemById(articleId);
                                                                if (article.notNull())
                                                                {
                                                                    article.Content.Data.Value = content;
                                                                    article.Content.DataType = dataType;
                                                                    return UpdateGuidanceItem(article);
                                                                }
                                                                return false;
        }
TM_WebServices