예제 #1
0
 //Check Unread Commitment
 public void CheckUnreadCommitment(string ids)
 {
     if (!ids.Equals("undefined") && !string.IsNullOrEmpty(ids))
     {
         string[] strSplitArr = ids.Split(';');
         MemberAction objMemberAction = new MemberAction();
         if (strSplitArr.Length > 0)
         {
             for (int i = 0; i <= strSplitArr.Length - 1; i++)
             {
                 if (!string.IsNullOrEmpty(strSplitArr[i].ToString()))
                     objMemberAction.UpdateMemberCommitments(new Guid(strSplitArr[i].ToString()));
             }
         }
     }
 }