Exemple #1
0
        public IActionResult GetAgentById([FromRoute] int agentId)
        {
            var agent = _repository.GetAgentById(agentId);

            return(Ok(agent));
        }