예제 #1
0
파일: Program.cs 프로젝트: waploaj/Homework
 public bool AddCoffee(Coffee coffee)
 {
     // TODO: Add prepared coffee.
     throw new NotImplementedException();
 }
예제 #2
0
파일: Program.cs 프로젝트: waploaj/Homework
 public bool RemoveCoffee(Coffee coffee)
 {
     // TODO: Subtract given coffee
     throw new NotImplementedException();
 }
예제 #3
0
파일: Program.cs 프로젝트: waploaj/Homework
 public bool ServeCustomer(Coffee coffee)
 {
     // TODO: remove customer from queue and give him coffee. If coffee not yet made do nothing and return false.
     throw new NotImplementedException();
 }