Exemplo n.º 1
0
 public IActionResult Criar()
 {
     ViewData["IdPet"]      = new SelectList(_petService.ObterTodos(), "Id", "Nome");
     ViewData["IdAdotante"] = new SelectList(_adotanteService.ObterTodos(), "Id", "Nome");
     return(View());
 }
Exemplo n.º 2
0
 public IActionResult Index()
 {
     return(View(_adotanteService.ObterTodos()));
 }