public virtual Task <ContestantResponse> GetChampion(Guid sessionId, ChampionQueryOptions options = null) { try { var result = ContestRepository.GetChampion(sessionId); return(result); } catch (Exception ex) { Logger.Error("ContestService.GetChampion failed", this, ex); } return(null); }