예제 #1
0
 public Order(List <Portion> por, Chef ch, DateTime date)
 {
     Portions = por;
     Chef     = ch;
     Dt       = date;
 }
예제 #2
0
 public Event(List <Portion> portions, Chef chef)
 {
     Portions = portions;
     Chef     = chef;
     Dt       = DateTime.Now;
 }