コード例 #1
0
        public IActionResult Get([FromRoute] int id)
        {
            var res = supplier.Get(id);

            return(Ok(res));
        }
コード例 #2
0
        public IActionResult GetById([FromRoute] int id)
        {
            var result = _supplier.Get(id);

            return(Ok(result));
        }