Exemplo n.º 1
0
        public User Create([FromBody] UserOnCreate user)
        {
            Log.Debug("Создание пользователя.");
            var result = _usersRepository.Create(new User()
            {
                Name = user.Name, Picture = user.Picture
            },
                                                 user.Login, user.Password);

            Log.Debug($"Создание пользователя завершено, Id = {result.Id}.");
            return(result);
        }
Exemplo n.º 2
0
        public static User SignUp(UserOnCreate user)
        {
            if (!isInitialized)
            {
                Initialize();
            }

            HttpResponseMessage response =
                client.PostAsJsonAsync(prefix + "users", user).Result;

            if (response.IsSuccessStatusCode)
            {
                return(response.Content.ReadAsAsync <User>().Result);
            }
            else
            {
                throw new Exception(response.Content.ReadAsStringAsync().Result);
            }
        }