Пример #1
0
 public Verb(int id, string lemma, string dependency, VerbForm form, string word) : base(id, lemma, dependency)
 {
     this.VerbFormHelper     = new VerbFormHelper();
     this.RelatedActions     = new List <Verb>();
     this.ExtensionsAfter    = new List <Element>();
     this.ExtensionsBefore   = new List <Element>();
     this.DependingDrawables = new List <IProcessable>();
     this.Form = form;
     this.Word = word;
 }
Пример #2
0
 public HelpersTests()
 {
     this.DrawableHelper = new DrawableHelper();
     this.VerbFormHelper = new VerbFormHelper();
 }