public IHttpActionResult Users() { var userList = _library.GetAllUsers(); if (userList == null) { return(NotFound()); } return(Ok(userList)); }