示例#1
0
 private void Remove()
 {
     if (Index >= 0)
     {
         ClassGroups.RemoveAt(Index);
     }
 }
示例#2
0
 private void Remove()
 {
     if (Index >= 0)
     {
         if (RequestToDataBase.Instance.requestDeleteFromGroup(ClassGroups, Index))
         {
             ClassGroups.RemoveAt(Index);
         }
     }
 }