public static void initConfig(ConsignmentDestinationConfiguration consignmentDestinationConfiguration)
 {
     RfcDestinationManager.RegisterDestinationConfiguration(consignmentDestinationConfiguration);
     Console.WriteLine("Registered new configuration");
 }
 public ConsignmentAdapter(string name, int poolSize, string user, string password, string language,
     string client, string applicationServer, string systemNumber)
 {
     configDestinations = new ConsignmentDestinationConfiguration();
     AddDestination(name, poolSize, user, password, language, client, applicationServer, systemNumber);
 }
 public static void clearConfig(ConsignmentDestinationConfiguration consignmentDestinationConfiguration)
 {
     consignmentDestinationConfiguration.ClearAllDestinations();
     RfcDestinationManager.UnregisterDestinationConfiguration(consignmentDestinationConfiguration);
     Console.WriteLine("Unregistered configuration successfully");
 }
 public ConsignmentAdapter()
 {
     configDestinations = new ConsignmentDestinationConfiguration();
 }