// GET: api/Mercados/5
        public IEnumerable <MercadosCuotaPartido> Get(int id)
        {
            var repo = new MercadosRepository();
            List <MercadosCuotaPartido> ListaMercadosPartido = repo.MercadosCuotaPartido(id);

            return(ListaMercadosPartido);
        }