JelloScrum.Model.Entities.Story.AddComment C# (CSharp) Method

AddComment() public method

Adds the given text as comment.
public AddComment ( string text ) : void
text string The tekst.
return void
        public virtual void AddComment(string text)
        {
            if (!string.IsNullOrEmpty(text))
            {
                comments.Add(new StoryComment(this, text));
            }
        }