Exemplo n.º 1
0
        private void button6_Click(object sender, EventArgs e)
        {
            MotorSUS m2 = new MotorSUS(4, 35, 20);
            Vozilo   vt = new Vozilo(m2);

            label4.Text = "Registracija ce iznositi " + vt.Registracija();
        }
Exemplo n.º 2
0
        private void button5_Click(object sender, EventArgs e)
        {
            MotorSUS m1 = new MotorSUS(3, 25, 17);
            Vozilo   vp = new Vozilo(m1);

            label3.Text = "Registracija ce iznositi " + vp.Registracija();
        }
Exemplo n.º 3
0
 public Vozilo(MotorSUS motor)
 {
     this.m = motor;
 }