public OpstiDomenskiObjekat procitajRed(DataRow red) { Mesto m = new Mesto(); m.MestoID = Convert.ToInt32(red["MestoID"]); m.Naziv = red["Naziv"].ToString(); return(m); }
public List <OpstiDomenskiObjekat> VratiListu(OleDbDataReader citac) { List <OpstiDomenskiObjekat> mesta = new List <OpstiDomenskiObjekat>(); while (citac.Read()) { Mesto mesto = new Mesto(); mesto.PttBroj = Convert.ToInt32(citac["PttBroj"]); mesto.Naziv = citac.GetString(1); mesta.Add(mesto); } return(mesta); }
public List <OpstiDomenskiObjekat> VratiListu(OleDbDataReader citac) { List <OpstiDomenskiObjekat> klijenti = new List <OpstiDomenskiObjekat>(); while (citac.Read()) { Klijent klijent = new Klijent(); Mesto mesto = new Mesto(); klijent.KlijentID = citac.GetString(0); klijent.Ime = citac.GetString(1); klijent.Prezime = citac.GetString(2); klijent.Jmbg = citac.GetString(3); klijent.KontaktTel = citac.GetString(4); klijent.BrLicneKarte = citac.GetString(5); mesto.PttBroj = Convert.ToInt32(citac["tbKlijent.PttBroj"]); mesto.Naziv = citac.GetString(8); klijent.Mesto = mesto; klijenti.Add(klijent); } return(klijenti); }