コード例 #1
0
        public IActionResult Get(Guid id)
        {
            var dosageForm = transactionService.Get(id);

            if (dosageForm != null)
            {
                return(Ok(dosageForm));
            }
            else
            {
                return(NotFound());
            }
        }