PlayStation_App.Database.UserAccountDatabase.UpdateAccountUser C# (CSharp) 메소드

UpdateAccountUser() 공개 메소드

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