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