using System.Collections.Generic;
public class PullReservations{
public bool GetMakePreReservation(int num){
public class TravelGateReservations{
public bool GetMakePreReservation(int num){
public static void Main()
Dictionary<int, Func<bool>> reservationsDictionaryprueba = new Dictionary<int, Func<bool>>
{ 0, new PullReservations().GetMakePreReservation },
{ 1, new TravelGateReservations().GetMakePreReservation },
Dictionary<int,Func<bool>> proc = new Dictionary<int,Func<bool>>
{0, new PullReservations().GetMakePreReservation},
{1, new TravelGateReservations().GetMakePreReservation},