/// <summary> /// Web service operation /// </summary> /// <param name="webService">Inner web service</param> public Operation(WebServiceRequest webService) : this(webService, false, false) { }
/// <summary> /// Adds the operation /// </summary> /// <param name="webService">Web service</param> /// <param name="preCommit">If set to <c>true</c> pre commit</param> /// <param name="postCommit">If set to <c>true</c> post commit</param> public void AddOperation(WebServiceRequest webService, bool preCommit, bool postCommit) { AddOperation(new Operation(webService, preCommit, postCommit)); }
/// <summary> /// Web service operation /// </summary> /// <param name="preCommit">Pre Commit Option</param> /// <param name="postCommit">Post Commit Option</param> /// <param name="webService">Inner web service</param> public Operation(WebServiceRequest webService, bool preCommit, bool postCommit) { PreCommit = preCommit; PostCommit = postCommit; WebService = webService; }
/// <summary> /// Adds the operation /// </summary> /// <param name="webService">Web service</param> public void AddOperation(WebServiceRequest webService) { AddOperation(new Operation(webService)); }