コード例 #1
0
 public bool AddSeasonInterestInfo(SeasonInterest add)
 {
     object[] results = this.Invoke("AddSeasonInterestInfo", new object[] {
         add
     });
     return((bool)(results[0]));
 }
コード例 #2
0
 public bool DeleteSeasonInterestInfo(SeasonInterest del)
 {
     object[] results = this.Invoke("DeleteSeasonInterestInfo", new object[] {
         del
     });
     return((bool)(results[0]));
 }
コード例 #3
0
 public bool UpdateSeasonInterestInfo(SeasonInterest update)
 {
     object[] results = this.Invoke("UpdateSeasonInterestInfo", new object[] {
         update
     });
     return((bool)(results[0]));
 }
コード例 #4
0
        public SeasonInterest[] Select(SeasonInterest selectDB)
        {
            object[] results = this.Invoke("Select1", new object[] {
                selectDB
            });

            return((SeasonInterest[])(results[0]));
        }
コード例 #5
0
 /// <remarks/>
 public void DeleteSeasonInterestInfoAsync(SeasonInterest del, object userState)
 {
     if ((this.DeleteSeasonInterestInfoOperationCompleted == null))
     {
         this.DeleteSeasonInterestInfoOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteSeasonInterestInfoOperationCompleted);
     }
     this.InvokeAsync("DeleteSeasonInterestInfo", new object[] {
         del
     }, this.DeleteSeasonInterestInfoOperationCompleted, userState);
 }
コード例 #6
0
 /// <remarks/>
 public void AddSeasonInterestInfoAsync(SeasonInterest add, object userState)
 {
     if ((this.AddSeasonInterestInfoOperationCompleted == null))
     {
         this.AddSeasonInterestInfoOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddSeasonInterestInfoOperationCompleted);
     }
     this.InvokeAsync("AddSeasonInterestInfo", new object[] {
         add
     }, this.AddSeasonInterestInfoOperationCompleted, userState);
 }
コード例 #7
0
 /// <remarks/>
 public void Select1Async(SeasonInterest selectDB, object userState)
 {
     if ((this.Select1OperationCompleted == null))
     {
         this.Select1OperationCompleted = new System.Threading.SendOrPostCallback(this.OnSelect1OperationCompleted);
     }
     this.InvokeAsync("Select1", new object[] {
         selectDB
     }, this.Select1OperationCompleted, userState);
 }
コード例 #8
0
 /// <remarks/>
 public void DeleteSeasonInterestInfoAsync(SeasonInterest del)
 {
     this.DeleteSeasonInterestInfoAsync(del, null);
 }
コード例 #9
0
 /// <remarks/>
 public void UpdateSeasonInterestInfoAsync(SeasonInterest update)
 {
     this.UpdateSeasonInterestInfoAsync(update, null);
 }
コード例 #10
0
 /// <remarks/>
 public void AddSeasonInterestInfoAsync(SeasonInterest add)
 {
     this.AddSeasonInterestInfoAsync(add, null);
 }
コード例 #11
0
 /// <remarks/>
 public void Select1Async(SeasonInterest selectDB)
 {
     this.Select1Async(selectDB, null);
 }
コード例 #12
0
 /// <summary>
 /// 删除一个季度利息
 /// </summary>
 /// <param name=""></param>
 /// <returns></returns>
 public bool DeleteJG_SeasonInterestInfo(InterestService.SeasonInterest ssii)
 {
     return(service.DeleteSeasonInterestInfo(ssii));
 }
コード例 #13
0
 /// <summary>
 /// 增加一个季度利息
 /// </summary>
 /// <param name=""></param>
 /// <returns></returns>
 public bool AddJG_SeasonInterestInfo(InterestService.SeasonInterest ssii)
 {
     return(service.AddSeasonInterestInfo(ssii));
 }