Beispiel #1
0
        private void FillBObject()
        {
            kod_jazyka = entityPreklad.kod_jazyka;
            text_id    = entityPreklad.text_id;
            preklad1   = entityPreklad.preklad1;

            jazyk = new BJazyk(entityPreklad.jazyk);
            text  = new BText(entityPreklad.text);
        }
Beispiel #2
0
        public void Reset()
        {
            kod_jazyka = "";
            text_id    = 0;
            preklad1   = "";

            jazyk = new BJazyk();
            text  = new BText();

            entityPreklad = new preklad();
        }
Beispiel #3
0
        public BPreklad(preklad p)
        {
            kod_jazyka = p.kod_jazyka;
            text_id    = p.text_id;
            preklad1   = p.preklad1;

            jazyk = new BJazyk(p.jazyk);
            text  = new BText(p.text);

            entityPreklad = p;
        }