Exemplo n.º 1
0
        public async Task <IHttpActionResult> GetAmendmentById(int amendmentId)
        {
            var amendment = await _service.GetAmendmentByIdAsync(amendmentId);

            return(Ok(amendment));
        }