Esempio n. 1
0
 public Item(string name, Makeup.DefaultMakeup type)
 {
     this.Name = name;
     this.Type = type;
     this.Id = currentId;
     currentId++;
 }
Esempio n. 2
0
 public Item(int id, string name, Makeup.DefaultMakeup type)
 {
     this.Id = id;
     this.Name = name;
     this.Type = type;
 }
Esempio n. 3
0
 public Item(int id, Makeup.DefaultMakeup type)
 {
     this.Id = id;
     this.Type = type;
 }
Esempio n. 4
0
 public Item(Makeup.DefaultMakeup type)
 {
     this.Type = type;
     this.Id = currentId;
     currentId++;
 }