Ejemplo n.º 1
0
 private IEnumerable <AncillaryServiceRQ> Select(PNRContentModifyAction action)
 {
     return(this.Where(s => s.Action == action).Select(s => s.AncillaryService));
 }
 private IEnumerable <PNRDataItem> Select(PNRContentModifyAction action, PNRDataItemType type)
 {
     return(this.Where(di => di.Action == action && di.DataItem.Type == type).Select(di => di.DataItem));
 }