public Protocols.ToolkitResultProtocol AddWorkaround(Protocols.Interfaces.AddWorkaroundSetupProtocol setupParam) { ClarifySession session = Global.GetSession( AuthHeader ); FChoice.Toolkits.Clarify.Interfaces.InterfacesToolkit toolkit = new FChoice.Toolkits.Clarify.Interfaces.InterfacesToolkit( session ); FChoice.Toolkits.Clarify.Interfaces.AddWorkaroundSetup setup; switch( setupParam.ConstructorCue ) { case 0: setup = new FChoice.Toolkits.Clarify.Interfaces.AddWorkaroundSetup(setupParam.SolutionIDNum, setupParam.Workaround); break; case 1: setup = new FChoice.Toolkits.Clarify.Interfaces.AddWorkaroundSetup(setupParam.SolutionObjid, setupParam.Workaround); break; default: throw new InvalidOperationException(string.Format("Constructor index '{0}' does not exist.", setupParam.ConstructorCue)); } if( Global.IsPropertyDirty(1, setupParam.DirtyFieldFlags) ) { setup.SolutionIDNum = setupParam.SolutionIDNum; } if( Global.IsPropertyDirty(2, setupParam.DirtyFieldFlags) ) { setup.SolutionObjid = setupParam.SolutionObjid; } if( Global.IsPropertyDirty(4, setupParam.DirtyFieldFlags) ) { setup.Workaround = setupParam.Workaround; } if( Global.IsPropertyDirty(8, setupParam.DirtyFieldFlags) ) { setup.IsPublic = setupParam.IsPublic; } if( Global.IsPropertyDirty(16, setupParam.DirtyFieldFlags) ) { setup.CreateDate = setupParam.CreateDate; } if( Global.IsPropertyDirty(32, setupParam.DirtyFieldFlags) ) { setup.ResolutionCode = setupParam.ResolutionCode; } if( Global.IsPropertyDirty(64, setupParam.DirtyFieldFlags) ) { foreach(Protocols.AdditionalFieldProtocol field in setupParam.AdditionalFields){setup.AdditionalFields.Append( field.FieldName, field.FieldType, field.FieldValue);} } return new Protocols.ToolkitResultProtocol( toolkit.AddWorkaround(setup) ); }
public Protocols.ToolkitResultProtocol AddWorkaround(System.Int32 solutionObjid, System.String workaround) { ClarifySession session = Global.GetSession( AuthHeader ); FChoice.Toolkits.Clarify.Interfaces.InterfacesToolkit toolkit = new FChoice.Toolkits.Clarify.Interfaces.InterfacesToolkit( session ); return new Protocols.ToolkitResultProtocol( toolkit.AddWorkaround(solutionObjid, workaround) ); }