Esempio n. 1
0
 public FireViewModel Create(FireInputModel model)
 {
     return model.GotALight()
                ? new FireViewModel {Text = "Light 'em up!"}
                : new FireViewModel {Text = "Light 'em up anyway!"};
 }