Ejemplo n.º 1
0
 // GET api/Customer
 public IEnumerable <Customer> Get(string nombre)
 {
     return(_UsuarioServicio.GetList(nombre).ToList());
 }
Ejemplo n.º 2
0
 public IEnumerable <Customer> GetAll()
 {
     return(_usuarioServicio.GetList(null));
 }