コード例 #1
0
        public ActionResult Index(Guid id)
        {
            //Exibe os Dashboards do Servidor selecionado
            var servidor = clienteHttp.Get <Servidor>(string.Format(@"servidor/{0}", id.ToString()));

            return(View(servidor));
        }
コード例 #2
0
        public ActionResult Index()
        {
            //Exibir servidores cadastrados
            var servidores = clienteHttp.Get <List <Servidor> >(@"servidor");

            return(View(servidores));
        }
コード例 #3
0
        public ActionResult Index()
        {
            var servidores = clienteHttp.Get <List <Servidor> >(@"servidor");

            return(View(servidores));
        }