Example #1
0
 private echoResponse BuildResponseMessage(Structure businessResponse)
 {
     var echoReply = new echoResponse();
     echoReply.structureToEcho = businessResponse;
     echoReply.Framework = new LibertyFrameworkHeader();
     return echoReply;
 }
Example #2
0
 private Structure ProcessBusinessLogic(Structure structureToEcho)
 {
     var str = new Structure();
     if (structureToEcho != null)
         str.value = structureToEcho.value;
     else
     {
         str.value = "null";
     }
     return str;
 }