Пример #1
0
        private void SetStoryText()
        {
            var classStoryAttribute =
                FindStoryAttribute();

            if (classStoryAttribute == null)
            {
                StoryText = null;
                return;
            }

            StoryText = new StoryText(classStoryAttribute.GetStoryText());
        }
Пример #2
0
 protected bool Equals(StoryText other)
 {
     return(string.Equals(Story, other.Story));
 }