PlayStation_App.Database.UserAccountDatabase.UpdateAccountUser C# (CSharp) Method

UpdateAccountUser() public method

public UpdateAccountUser ( AccountUser user ) : Task
user PlayStation_App.Models.Authentication.AccountUser
return Task
        public async Task<int> UpdateAccountUser(AccountUser user)
        {
            using (var db = new UserAccountDataSource(Platform, DbLocation))
            {
                return await db.AccountUserRepository.Update(user);
            }
        }