private void Remove()
 {
     if (Index >= 0)
     {
         ClassSubject.RemoveAt(Index);
     }
 }
Exemple #2
0
 private void Remove()
 {
     if (Index >= 0)
     {
         if (RequestToDataBase.Instance.requestDeleteFromSubject(ClassSubject, Index))
         {
             ClassSubject.RemoveAt(Index);
         }
     }
 }