Esempio n. 1
0
 public void CarregarCombos()
 {
     ViewBag.Pacientes = pacienteAppService.GetAll();
     ViewBag.Clinicas  = clinicaAppService.GetAll();
 }
Esempio n. 2
0
        // GET: Clinicas
        public ActionResult Index()
        {
            var clinicaViewModel = clinicaAppService.GetAll();

            return(View(clinicaViewModel));
        }