Exemple #1
0
        public override async Task <IActionResult> GetAsync(string id)
        {
            var byIdAsync = await AgentService.GetAgentByIdAsync(id.ToGuid());

            return(Success(byIdAsync, null));
        }