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

GetUserAccount() public method

public GetUserAccount ( string id ) : Task
id string
return Task
        public async Task<AccountUser> GetUserAccount(string id)
        {
            using (var ds = new UserAccountDataSource(Platform, DbLocation))
            {
                var account = await ds.AccountUserRepository.Get(id);
                return account;
            }
        }