public static void SaveAll(List <Group> givenList) { lock (saveLock) { GroupProperties.SaveGroups(givenList); } OnGroupSaveEvent.Call(); }
/// <summary> Save givenList group </summary> /// <param name="givenList">The list of groups to save</param> public static void saveGroups(List <Group> givenList) { GroupProperties.SaveGroups(givenList); if (OnGroupSave != null) { OnGroupSave(); } OnGroupSaveEvent.Call(); }