Exemplo n.º 1
0
 public Rare(Doneness state) : this(state.Temperature, state.Steak)
 {
 }
Exemplo n.º 2
0
 public Steak(string beefCut)
 {
     this.beefCut = beefCut;
     state        = new Uncooked(0.0, this);
 }
Exemplo n.º 3
0
 public Uncooked(Doneness state)
 {
     temperature = 0;
     steak       = state.Steak;
     Initialise();
 }
Exemplo n.º 4
0
 public Medium(Doneness state) : this(state.Temperature, state.Steak)
 {
 }