Esempio n. 1
0
        public static List <Department> razporedtip(List <Department> list, tipDela tip)
        {
            List <Department> naIme = new List <Department>();


            naIme = list.FindAll(c => c.tipDela == tip).ToList();
            return(naIme);
        }
Esempio n. 2
0
 public Department(string ime, string priimek, string naziv, int leto, string emso, tipDela tipDela, int maticna, double postavka)
 {
     this.ime      = ime;
     this.priimek  = priimek;
     this.naziv    = naziv;
     this.leto     = leto;
     this.emso     = emso;
     this.tipDela  = tipDela;
     this.maticna  = maticna;
     this.postavka = postavka;
 }