Ejemplo n.º 1
0
 private async Task SignIn(Account account)
 {
 }
Ejemplo n.º 2
0
        private async Task ExecuteSignUpUserCommand()
        {
            if (IsBusy)
            {
                return;
            }

            IsBusy = true;

            var user = new User
            {
                Name = string.Format("{0} {1}", FirstName, LastName),
                //ProfileImage = GravatarService.CalculateUrl(Email)
            };

            var account = new Account
            {
                Username = Username,
                Password = Password,
                Email = Email,
                UserId = user.Id
            };


        }
Ejemplo n.º 3
0
 private async Task CreateAccount(Account account, User user)
 {
 }