Esempio n. 1
0
 //Dodavanje ribe u listu
 public bool DodajRibu(Riba r)
 {
     if (r == null)
     {
         throw new ArgumentNullException("Nema ribe");
     }
     try {
         sveRibe.Add(r);
     }catch (Exception ex){
         return false;
     }
     return true;
 }
Esempio n. 2
0
 //Dodavanje ribe u listu
 public bool DodajRibu(Riba r)
 {
     if (r == null)
     {
         throw new ArgumentNullException("Nema ribe");
     }
     try {
         sveRibe.Add(r);
     }catch (Exception ex) {
         return(false);
     }
     return(true);
 }