Exemplo n.º 1
0
 public static void Delete(TipNamestaja tn)
 {
     tn.Obrisan = true;
     foreach (Namestaj namestaj in Namestaj.namestajCollection)
     {
         if (namestaj.TipNamestajaId == tn.Id)
         {
             Namestaj.Delete(namestaj);
         }
     }
     Update(tn);
 }