コード例 #1
0
        public async Task <IActionResult> GetAll([FromRoute] Guid clientId)
        {
            var result = await _repository.GetAllForClient(clientId);

            return(Ok(_mapper.Map <OfferDto>(result)));
        }