示例#1
0
 public static void SaveAll(List <Group> givenList)
 {
     lock (saveLock) {
         GroupProperties.SaveGroups(givenList);
     }
     OnGroupSaveEvent.Call();
 }
示例#2
0
 /// <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();
 }