Ejemplo n.º 1
0
 public Steak(string beefCut)
 {
     _beefCut = beefCut;
     State    = new Rare(0.0, this);
 }
Ejemplo n.º 2
0
 public Uncooked(Doneness state)
 {
     currentTemp = state.CurrentTemp;
     steak       = state.Steak;
     Initialize();
 }