Esempio n. 1
0
 public Race LoadRace()
 {
     if (string.IsNullOrEmpty(CurrentContext.CurrentRaceTitle))
     {
         return(ConvertModelToDto(_raceService.CreateEmptyRace()));
     }
     else
     {
         return(ConvertModelToDto(_raceService.LoadCurrentRace()));
     }
 }