public PlainRfcPreparedFunction(string functionName,
                                 PlainRfcStructureMapper structureMapper, 
                                 RfcRepository repository, 
                                 RfcDestination destination)
     : base(functionName)
 {
     this.repository = repository;
     this.destination = destination;
     this.structureMapper = structureMapper;
 }
 public PlainSapRfcConnection(string destinationName)
 {
     this.destinationName = destinationName;
     this.structureMapper = new PlainRfcStructureMapper(new PlainRfcValueMapper());
 }