public IEnumerable <Apuesta> GetApuestasPorMercadoId(int merId)
        {
            var repo = new ApuestasRepository();

            List <Apuesta> apuestas = repo.ObtenerApuestasPorMercadoIdQuery(merId);

            return(apuestas);
        }