PlayStation_App.Database.UserAccountDatabase.GetUserAccount C# (CSharp) Méthode

GetUserAccount() public méthode

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