/**
* In .NET Client (C#) only the content information of ClassB is being submitted. (--> propC is unknown)
*/
public ResponseWrapperB getClassCAsClassB() {
ClassC classC= new ClassC();
classC.setPropA("propA");
classC.setPropB("propB");
classC.setPropC("propC");
ResponseWrapperB resp = new ResponseWrapperB();
resp.setData(classC);
return resp;
}