public void CarregarCombos() { ViewBag.Pacientes = pacienteAppService.GetAll(); ViewBag.Clinicas = clinicaAppService.GetAll(); }
// GET: Clinicas public ActionResult Index() { var clinicaViewModel = clinicaAppService.GetAll(); return(View(clinicaViewModel)); }