Beispiel #1
0
 public void setProps(Skola s)
 {
     this.Id          = s.Id;
     this.Naziv       = s.Naziv;
     this.Adresa      = s.Adresa;
     this.Email       = s.Email;
     this.Website     = s.Website;
     this.Telefon     = s.Telefon;
     this.ZiroRacun   = s.ZiroRacun;
     this.Pib         = s.Pib;
     this.MaticniBroj = s.MaticniBroj;
 }
Beispiel #2
0
        public Skola DeepCopy()
        {
            Skola copy = new Skola(this.Id, this.Naziv, this.Adresa, this.Telefon, this.Email, this.Website, this.MaticniBroj, this.ZiroRacun, this.Pib);

            return(copy);
        }