コード例 #1
0
ファイル: Viaje.cs プロジェクト: edwar95/Propietarios
 public Viaje()
 {
     fecha     = new Fecha();
     Vehiculo  = new Vehiculo();
     Chofer    = new Chofer();
     coneccion = new ConexionSQL();
 }
コード例 #2
0
ファイル: Form1.cs プロジェクト: edwar95/Propietarios
 public Form1()
 {
     InitializeComponent();
     confirmarBtn.Enabled = false;
     coneccion = new ConexionSQL();
     reserva= new Reserva();
 }
コード例 #3
0
ファイル: Reserva.cs プロジェクト: edwar95/Propietarios
 public Reserva()
 {
     coneccion = new ConexionSQL();
     viaje     = new Viaje();
 }