예제 #1
0
 public override DivideTwoNumbersFunction GetOutput(RfcResult result)
 {
     this.Quotient  = result.GetOutput <decimal>("e_quotient");
     this.Remainder = result.GetOutput <int>("e_remainder");
     return(this);
 }
 public override int GetOutput(RfcResult result)
 {
     return(result.GetOutput <int>("e_result"));
 }
예제 #3
0
 public override IEnumerable <ZCustomer> GetOutput(RfcResult result)
 {
     return(result.GetTable <ZCustomer>("e_customers"));
 }
 public abstract T GetOutput(RfcResult result);
예제 #5
0
 public static void Main(string[] args)
 {
     SapRfcConnection conn   = new SoapSapRfcConnection("DEV");
     RfcResult        result = conn.ExecuteFunction("ZPLU_RFC_TEST");
 }