public async Task <ActionResult> Index() { try { var apiResult = await _apiRepository.GetPlayers().ConfigureAwait(false); if (apiResult != null) { await _persistence.SavePlayersBd(apiResult).ConfigureAwait(false); } var validPlayers = await _bdRepository.GetAll().ConfigureAwait(false); return(Content(JsonConvert.SerializeObject(validPlayers, Formatting.Indented))); } catch (Exception ex) { throw new ControllerException("Excepción al recuperar los jugadores", ex); } }
public List <JugadorEntity> GetAll() { var query = (from jg in _repository.GetAll() select new JugadorEntity { Id = jg.Id, Dni = jg.Dni, Nombres = jg.Nombres, Apellidos = jg.Apellidos, Direccion = jg.Direccion, Telefono = jg.Telefono, TelefonoEmergencia = jg.TelefonoEmergencia, FotoUrl = jg.FotoUrl, IdPieHabil = jg.IdPieHabil, FechaAfiliacion = jg.FechaAfiliacion, FechaNacimiento = jg.FechaNacimiento, Borrado = jg.Borrado }).ToList(); return(query); }
public IEnumerable <Jugador> ObtenerJugadores() { return(repository.GetAll()); }
// GET: Jugadores public async Task <ActionResult> Index() { await _repositorio.CargarDatos(); return(View(await _repositorio.GetAll())); }
public IEnumerable <Jugador> GetAll() { return(jugadorrepository.GetAll()); }
// GET: JugadorRepository public async Task <ActionResult> Index() { await repositorio.DatosApi(); return(View(await repositorio.GetAll())); }