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

RemoveAccountUser() public method

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