Esempio n. 1
0
 public Dish makeDish(Contents Contents, Packer Packer, string Name)
 {
     throw new Exception("Funkcja wyłączona, stan rozmrażania");
 }
Esempio n. 2
0
 public Dish makeDish(Contents Contents, Packer Packer, string Name)
 {
     return(Packer.createDish(Contents, Name));
 }
Esempio n. 3
0
 public Dish createDish(Contents Contents, string name)
 {
     dishBuilder.Prepare(Contents, name);
     dishBuilder.Pack();
     return(dishBuilder.GetDish());
 }