public IHttpActionResult Get(int id) { var bike = _BikesService.GetBike(id); if (bike == null) { return(NotFound()); } return(Ok(bike)); }
public Bike Get(int id) { return(Service.GetBike(id)); }