first commit
This commit is contained in:
@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using Volo.Abp.Account;
|
||||
using Volo.Abp.DependencyInjection;
|
||||
|
||||
namespace KonSoft.Admin.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}");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user