public ElementWithValue(Element e) { Id = IdGenerator.GenerateId(); Name = e.Name; Value = Int64.Parse(e.Value); }
public ElementWithValue(string nome, long value) { Id = IdGenerator.GenerateId(); Name = nome; Value = value; }
public SetPair() { Id = IdGenerator.GenerateId(); ListPair = new List <PairElement>(); }
public Set(List <Element> list) { this.Id = IdGenerator.GenerateId(); this.ListElements = list; }
public Set() { this.Id = IdGenerator.GenerateId(); this.ListElements = new List <Element>(); }
public Set(string name) { this.Id = this.Id = IdGenerator.GenerateId(); this.Name = name; this.ListElements = new List <Element>(); }
public Set(string name, List <Element> elements) { this.Id = this.Id = IdGenerator.GenerateId(); this.Name = name; this.ListElements = elements; }