/
aprogrammer
/
ACme.BookStore
Обзор
Документация
Войти
/
aprogrammer
/
ACme.BookStore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/ACme.BookStore.HttpApi.Client.ConsoleTestApp/ClientDemoService.cs
25 строк
747 B
nicolaujoao1
Add project files.
29 сен 2022, 16:22
29 сен 2022, 16:22
e371a9d
Код
Авторство
О чём код?
using System; using System.Threading.Tasks; using Volo.Abp.Account; using Volo.Abp.DependencyInjection; namespace ACme.BookStore.HttpApi.Client.ConsoleTestApp; public class ClientDemoService : ITransientDependency { private readonly IProfileAppService _profileAppService; public ClientDemoService(IProfileAppService profileAppService) { _profileAppService = profileAppService; } public async Task RunAsync() { var output = await _profileAppService.GetAsync(); Console.WriteLine($"UserName : {output.UserName}"); Console.WriteLine($"Email : {output.Email}"); Console.WriteLine($"Name : {output.Name}"); Console.WriteLine($"Surname : {output.Surname}"); } }