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

RemoveAccountUser() 공개 메소드

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