예제 #1
0
        public static void DeleteContactsFromGroup(int contactID, int groupID)
        {
            ContactDataMapper objCaller = new ContactDataMapper();

            objCaller.DeleteContactfromGroup(contactID, groupID);
        }
예제 #2
0
        public static void DeleteAllGroupContacts(int groupID)
        {
            ContactDataMapper objCaller = new ContactDataMapper();

            objCaller.DeleteContactfromGroup(groupID);
        }