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

GetUserAccounts() public method

public GetUserAccounts ( ) : Task>
return Task>
        public async Task<List<AccountUser>> GetUserAccounts()
        {
            using (var ds = new UserAccountDataSource(Platform, DbLocation))
            {
                return await ds.AccountUserRepository.GetAllWithChildren();
            }
        }