Esempio n. 1
0
 internal ErrorNone(StoreOf <Error> owner, Item item, IdKey idKe)
 {
     Owner   = owner;
     Item    = item;
     ErrorId = idKe;
     owner.Add(this);
 }
Esempio n. 2
0
 internal ErrorOne(StoreOf <Error> owner, Item item, IdKey idKe, string text = null)
 {
     Owner   = owner;
     Item    = item;
     ErrorId = idKe;
     _text   = text;
     owner.Add(this);
 }
Esempio n. 3
0
        internal ErrorMany(StoreOf <Error> owner, Item item, IdKey idKe, string text = null)
        {
            Owner   = owner;
            Item    = item;
            ErrorId = idKe;

            if (text != null)
            {
                _list.Add(text);
            }

            owner.Add(this);
        }
Esempio n. 4
0
 internal ErrorManyAux2(StoreOf <Error> owner, Item item, Item aux1, Item aux2, IdKey idKe, string text = null) : base(owner, item, idKe, text)
 {
     Aux1 = aux1;
     Aux2 = aux2;
 }
Esempio n. 5
0
 internal ErrorNoneAux2(StoreOf <Error> owner, Item item, Item aux1, Item aux2, IdKey idKe) : base(owner, item, idKe)
 {
     Aux1 = aux1;
     Aux1 = aux2;
 }
Esempio n. 6
0
 internal ErrorOneAux(StoreOf <Error> owner, Item item, Item aux, IdKey idKe, string text = null) : base(owner, item, idKe, text)
 {
     Aux = aux;
 }
Esempio n. 7
0
 internal ErrorNoneAux(StoreOf <Error> owner, Item item, Item aux, IdKey idKe) : base(owner, item, idKe)
 {
     Aux = aux;
 }