コード例 #1
0
        //EJERCICIO1:
        //Devolvemos los valores introducimos en ApuestaExamen.

        // GET: api/Apuesta
        public IEnumerable <ApuestaExamen> Get()
        {
            var repo = new ApuestaRepository();
            // List <Apuesta> a = repo.Retrieve();
            List <ApuestaExamen> a = repo.RetrieveExamen();

            return(a);
        }