コード例 #1
0
 public IActionResult Get(int id)
 {
     try
     {
         return(Ok(_getManufacturerCommand.Execute(id)));
     }
     catch (EntityNotFoundException)
     {
         return(NotFound());
     }
 }
コード例 #2
0
 // GET: Manufacturer/Details/5
 public ActionResult Details(int id)
 {
     return(View(_getManufacturer.Execute(id)));
 }