Exemple #1
0
 private void CooperationNoticeResponseEvent(CooperationNoticeResponse response)
 {
     try
     {
         if (response != null)
         {
             System.Collections.Generic.List <CooperationStaff> lists = this.dataService.GetCooperationStaff(response.uid);
             if (lists != null)
             {
                 foreach (CooperationStaff item in lists)
                 {
                     item.SynchronizeTo(response);
                 }
             }
         }
     }
     catch (System.Exception ex)
     {
         ServiceUtil.Instance.Logger.Error(ex);
     }
 }
 private void CooperationNoticeResponseEvent(CooperationNoticeResponse response)
 {
     try
     {
         if (response != null)
         {
             System.Collections.Generic.List<CooperationStaff> lists = this.dataService.GetCooperationStaff(response.uid);
             if (lists != null)
             {
                 foreach (CooperationStaff item in lists)
                 {
                     item.SynchronizeTo(response);
                 }
             }
         }
     }
     catch (System.Exception ex)
     {
         ServiceUtil.Instance.Logger.Error(ex);
     }
 }