Esempio n. 1
0
        public User Logon(AddUserInput input)
        {
            if (input != null)
            {
                var curentUser = _userRepository.GetUser(input.Login, input.Password);
                if (curentUser.Id != 0)
                {
                    FormsAuthentication.SetAuthCookie(curentUser.Login, true);
                    return curentUser;
                }
            }

            return null;
        }
Esempio n. 2
0
        public void AddUser(AddUserInput input)
        {
            if (input != null)
            {
                var user = new User
                {
                    Login = input.Login,
                    Password = input.Password,
                };
                

                _userRepository.Insert(user);
                Logon(input);
                
               /* return new GetUsersInput
                {
                    User = Mapper.Map<UserDto>(user)
                }; */
            }
            
        }
Esempio n. 3
0
        public int GetUserByName(AddUserInput input)
        {
            var userId = _userRepository.GetUserId(input.Login);

            return userId;
        }