예제 #1
0
파일: Item.cs 프로젝트: enchman/workboard
 public Item(string name, Makeup.DefaultMakeup type)
 {
     this.Name = name;
     this.Type = type;
     this.Id = currentId;
     currentId++;
 }
예제 #2
0
파일: Item.cs 프로젝트: enchman/workboard
 public Item(int id, string name, Makeup.DefaultMakeup type)
 {
     this.Id = id;
     this.Name = name;
     this.Type = type;
 }
예제 #3
0
파일: Item.cs 프로젝트: enchman/workboard
 public Item(int id, Makeup.DefaultMakeup type)
 {
     this.Id = id;
     this.Type = type;
 }
예제 #4
0
파일: Item.cs 프로젝트: enchman/workboard
 public Item(Makeup.DefaultMakeup type)
 {
     this.Type = type;
     this.Id = currentId;
     currentId++;
 }