Ejemplo n.º 1
0
        public List <Equipo> Get()
        {
            var estaAutenticado = User.Identity.IsAuthenticated;

            if (estaAutenticado)
            {
                var mundial = new Mundial();

                return(mundial.Equipos());
            }

            return(new List <Equipo>());
        }
Ejemplo n.º 2
0
 public ActionResult <List <Equipo> > Get()
 {
     return(Mundial.Equipos());
 }