mirror of https://github.com/abpframework/abp
				
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							26 lines
						
					
					
						
							812 B
						
					
					
				
			
		
		
	
	
							26 lines
						
					
					
						
							812 B
						
					
					
				| using System;
 | |
| using System.Threading.Tasks;
 | |
| using Volo.Abp.DependencyInjection;
 | |
| using Volo.Abp.Identity;
 | |
| 
 | |
| namespace DashboardDemo.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}");
 | |
|         }
 | |
|     }
 | |
| } |