Example #1
0
 /// <remarks/>
 public void FinancingPledgeApplyCreateAsync(UserModel user, PledgeApply pledgeApply, PledgeApplyStockDetail[] details, bool isSubmitAudit) {
     this.FinancingPledgeApplyCreateAsync(user, pledgeApply, details, isSubmitAudit, null);
 }
Example #2
0
 /// <remarks/>
 public void FinancingPledgeApplyCreateAsync(UserModel user, PledgeApply pledgeApply, PledgeApplyStockDetail[] details, bool isSubmitAudit, object userState) {
     if ((this.FinancingPledgeApplyCreateOperationCompleted == null)) {
         this.FinancingPledgeApplyCreateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnFinancingPledgeApplyCreateOperationCompleted);
     }
     this.InvokeAsync("FinancingPledgeApplyCreate", new object[] {
                 user,
                 pledgeApply,
                 details,
                 isSubmitAudit}, this.FinancingPledgeApplyCreateOperationCompleted, userState);
 }
Example #3
0
 public string FinancingPledgeApplyCreate(UserModel user, PledgeApply pledgeApply, PledgeApplyStockDetail[] details, bool isSubmitAudit) {
     object[] results = this.Invoke("FinancingPledgeApplyCreate", new object[] {
                 user,
                 pledgeApply,
                 details,
                 isSubmitAudit});
     return ((string)(results[0]));
 }