示例#1
0
 private void OnQueryGoodsSite(int goodsSiteID)
 {
     if (this.eventQueryGoodsSite != null)
     {
         QueryGoodsSiteEventArgs gsArgs = new QueryGoodsSiteEventArgs();
         gsArgs.GoodsSiteID = goodsSiteID;
         this.eventQueryGoodsSite.Invoke(this, gsArgs);
     }
 }
示例#2
0
 private void OnStockDetail(int goodsSiteID)
 {
     if (this.eventStockDetail != null)
     {
         QueryGoodsSiteEventArgs gsArgs = new QueryGoodsSiteEventArgs();
         gsArgs.GoodsSiteID = goodsSiteID;
         this.eventStockDetail.Invoke(this, gsArgs);
     }
 }
示例#3
0
 private void OnUseGs(int gsID)
 {
     if (this.eventUnuseGs != null)
     {
         QueryGoodsSiteEventArgs qgsArgs = new QueryGoodsSiteEventArgs();
         qgsArgs.GoodsSiteID = gsID;
         this.eventUseGs.Invoke(this, qgsArgs);
     }
 }