Exemple #1
0
 private void CargarDefaults(Hotel hotel) //normalmente esto iria en el constructor, pero puede traer problemas con otras cosas
 {
     hotel.CantidadEstrellas = 1;         //si fuera cero romperia
     hotel.IdPais            = 1;
     hotel.FechaDeCreacion   = LoginData.SystemDate;
 }
Exemple #2
0
        private void nuevoHotel_Click(object sender, EventArgs e)
        {
            var nuevo = new AbmHotel.Hotel(_main.session);

            nuevo.Show();
        }
 public ModificacionHotel(Hotel hotel)
 {
     this.hotel = hotel;
     InitializeComponent();
 }