예제 #1
0
 public void UsunOferte(string idOferty)
 {
     foreach (Oferta o in ListaOfert)
     {
         if (o.IdOferty == idOferty)
         {
             ListaOfert.Remove(o);
         }
     }
 }
예제 #2
0
 public void DodajOferte(Oferta o)
 {
     ListaOfert.Add(o);
 }