Ejemplo n.º 1
0
 internal ErrorNone(ErrorRoot owner, Item item, IdKey idKe)
 {
     Owner   = owner;
     Item    = item;
     ErrorId = idKe;
     owner.Add(this);
 }
Ejemplo n.º 2
0
 internal ErrorOne(ErrorRoot owner, Item item, IdKey idKe, string text = null)
 {
     Owner   = owner;
     Item    = item;
     ErrorId = idKe;
     _text   = text;
     owner.Add(this);
 }