public Klijent(String _jmb, String _ime, String _prezime, String _adresa, Int32 _idVlasnikPsa, DateTime _datumPreuzimanja) : base(_jmb, _ime, _prezime, _adresa) { PasDAO p = new PasDAO("localhost", "Centar", "root", ""); Pas pas = new Pas(); pas = p.getById(_idVlasnikPsa); vlasnikPsa = pas; datumPreuzimanjaPsa = _datumPreuzimanja; }
public Ugovor(int sifra, int idPas, int idKlijent, int idRadnik) { PasDAO p = new PasDAO("localhost", "Centar", "root", ""); Pas pas = new Pas(); pas = p.getById(idPas); KlijentDAO k = new KlijentDAO("localhost", "Centar", "root", ""); Klijent klij = new Klijent(); klij = k.getById(idKlijent); RadnikDAO r = new RadnikDAO("localhost", "Centar", "root", ""); Radnik rad = new Radnik(); rad = r.getById(idRadnik); Sifra = sifra; Pas = pas; Vlasnik = klij; Radnik = rad; }