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