public IHttpActionResult GetRentalPlanById(int id) { var rentalPlan = planService.GetRentalPlanById(id); return(Ok(rentalPlan)); }