Ejemplo n.º 1
0
        public ActionResult Editar(PacienteTO paciente)
        {
            ServicoSOAP servicoSOAP = new ServicoSOAP();

            servicoSOAP.AtualizaPaciente(paciente);

            return(View("Sucesso"));
        }
Ejemplo n.º 2
0
        public ActionResult Editar(int id)
        {
            ServicoSOAP servicoSOAP = new ServicoSOAP();

            return(View(servicoSOAP.GetPacientePorId(id)));
        }
Ejemplo n.º 3
0
        public ActionResult Index()
        {
            ServicoSOAP servicoSOAP = new ServicoSOAP();

            return(View(servicoSOAP.GetMeusPacientes()));
        }