Esempio n. 1
0
        // Create a new User
        public User Post([FromBody] User user)
        {
            var createdUser = userBusinessLogic.Create(user);

            return(createdUser);
        }