コード例 #1
0
ファイル: BikesController.cs プロジェクト: sulmar/ZUS.Zeus
        public IHttpActionResult Get(int id)
        {
            var bike = _BikesService.GetBike(id);

            if (bike == null)
            {
                return(NotFound());
            }

            return(Ok(bike));
        }
コード例 #2
0
 public Bike Get(int id)
 {
     return(Service.GetBike(id));
 }