public NativeRfcPreparedFunction(string functionName,
                                  NativeRfcStructureMapper structureMapper,
                                  RfcRepository repository,
                                  RfcDestination destination)
     : base(functionName)
 {
     this.repository      = repository;
     this.destination     = destination;
     this.structureMapper = structureMapper;
 }
 internal NativeRfcResult(IRfcFunction function, NativeRfcStructureMapper structureMapper)
 {
     this.function        = function;
     this.structureMapper = structureMapper;
 }