Пример #1
0
        public bool SaveUser(UserDto dto)
        {
            this.user = dto.DtoToEntity();

            if (this._user.Insert(user).IsNull())
            {
                return(false);
            }

            return(true);
        }