예제 #1
0
파일: Bowl.cs 프로젝트: smghacker/S-M-G
 public void Remove(Vegetable vegetable)
 {
     this.Vegetables.Remove(vegetable);
 }
예제 #2
0
파일: Chef.cs 프로젝트: smghacker/S-M-G
 private void Peel(Vegetable vegetable)
 {
     vegetable.HasBeenPeeled = true;
 }
예제 #3
0
파일: Bowl.cs 프로젝트: smghacker/S-M-G
 public void Add(Vegetable vegetable)
 {
     this.Vegetables.Add(vegetable);
 }
예제 #4
0
파일: Chef.cs 프로젝트: smghacker/S-M-G
 private void Cut(Vegetable potato)
 {
     //...
 }