コード例 #1
0
        // GET: api/Apuesta?id_mercado=id_mercado

        public IEnumerable <ApuestaDTO> GetTipoUnderOver(int id_mercado_fk)
        {
            var repo = new ApuestaRepository();

            List <ApuestaDTO> apuesta = repo.RetrieveDatos(id_mercado_fk);

            return(apuesta);
        }