Exemplo n.º 1
0
        public async Task <IActionResult> GetClients()
        {
            var clients = await _repo.GetClients();

            var clientsToReturn = _mapper.Map <IEnumerable <ClientForListDto> >(clients);

            return(Ok(clientsToReturn));
        }