コード例 #1
0
        public IHttpActionResult GetRentalPlanById(int id)
        {
            var rentalPlan = planService.GetRentalPlanById(id);

            return(Ok(rentalPlan));
        }