コード例 #1
0
        public IComment CreateComment(string text, string author, Severity severity, DateTime dateTime, string version)
        {
            var comment = _propertiesFactory.CreateComment(text, author, severity);

            comment.Date    = dateTime;
            comment.Version = version;
            return(comment);
        }