/// <summary> /// /// </summary> /// <param name="xmlDoc"></param> public static void DelUsersFromGroups(XmlDocument xmlDoc) { DataOpContext dataOpContext = InitEventContexts(); dataOpContext.OnBeforeDelUsersFromGroups(xmlDoc); using (TransactionScope scope = TransactionScopeFactory.Create()) { dataOpContext.OnDelUsersFromGroups(xmlDoc); scope.Complete(); } }