/* Support POST here since we can receive a large number of Ids */
 public IEnumerable <Core.Models.AreaReservation> GetPlanSummaryAreaReservations(
     [FromBody] PlanSummaryRequest reqobj,
     string type)
 {
     return(this.GetController().GetPlanSummaryAreaReservations(
                reqobj.PlanIds, type));
 }
 /* Support POST here since we can receive a large number of Ids */
 public IEnumerable <Core.Models.UndergroundArea> GetUndergroundAreas(
     [FromBody] PlanSummaryRequest reqobj,
     string type)
 {
     return(this.GetController().GetUndergroundAreas(
                reqobj.PlanIds, type));
 }
 /* Support POST here since we can receive a large number of Ids */
 public Core.Models.PlanSummary GetPlanSummary(
     [FromBody] PlanSummaryRequest reqobj)
 {
     return(this.GetController().GetPlanSummary(reqobj.PlanIds));
 }