// Create a new User public User Post([FromBody] User user) { var createdUser = userBusinessLogic.Create(user); return(createdUser); }