Example #1
0
 public bool PostDeportista(Deportista deportista)
 {
     return(DeportistaRepositorio.PostDeportista(deportista));
 }
Example #2
0
 public bool DeleteDeportista(string id)
 {
     return(DeportistaRepositorio.DeleteDeportista(id));
 }
Example #3
0
 public bool PutDeportista(string id, Deportista deportista)
 {
     return(DeportistaRepositorio.UpdateDeportista(id, deportista));//NoContent();
 }
Example #4
0
 public IEnumerable <Deportista> GetDeportista(string id)
 {
     return(DeportistaRepositorio.GetDeportistas(id));//deportista;
 }
Example #5
0
 public IEnumerable <Deportista> GetAllDeportista()
 {
     return(DeportistaRepositorio.GetAllDeportistas());
 }
 public IEnumerable <Grupo> MisGruposDep(string deportista)
 {
     return(DeportistaRepositorio.MisGruposDep(deportista));
 }
 public IEnumerable <GrupoBusqueda> RetInscritosDep(string deportista)
 {
     return(DeportistaRepositorio.RetInscritosDep(deportista));
 }