Ejemplo n.º 1
0
        private static Racun CreateRacunDetail(DataRow row)
        {
            Racun r = new Racun();
            r.Komercijalist = row["FullName"].ToString();
            r.TipKreditneKartice = row["Tip"].ToString();

            return r;
        }
Ejemplo n.º 2
0
        private static Racun CreateRacun(DataRow row)
        {
            Racun r = new Racun();
            r.IDRacun = (int)row["IDRacun"];
            r.BrojRacuna = row["BrojRacuna"].ToString();

            return r;
        }