public Item(string name, Makeup.DefaultMakeup type) { this.Name = name; this.Type = type; this.Id = currentId; currentId++; }
public Item(int id, string name, Makeup.DefaultMakeup type) { this.Id = id; this.Name = name; this.Type = type; }
public Item(int id, Makeup.DefaultMakeup type) { this.Id = id; this.Type = type; }
public Item(Makeup.DefaultMakeup type) { this.Type = type; this.Id = currentId; currentId++; }