Exemplo n.º 1
0
 public void OnGet(string buscar)
 {
     if (!string.IsNullOrEmpty(buscar))
     {
         Personas = (List <Persona>)_valueController.GetFilter(buscar).Result;
     }
     else
     {
         Personas = (List <Persona>)_valueController.GetAll().Result;
     }
 }