Beispiel #1
0
        public void EliminarHabitacion(int id)
        {
            ServiceHabitacion sh = new ServiceHabitacion();

            HABITACION h = sh.getEntity(id);


            if (MessageBox.Show("Esta seguro de que desea eliminar la habitacion: " + h.NUMERO + "?", "Eliminar Habitacion", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Warning) == DialogResult.Yes)
            {
                sh.delEntity(h.IDHABITACION);
                MessageBox.Show("Habitacion Eliminada", "Eliminar Habitacion", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
            }
        }
Beispiel #2
0
        public bool AgregarHabitacion(int numero, string tipoCama, string accesorios, int precio)
        {
            ServiceHabitacion sh = new ServiceHabitacion();

            try
            {
                // Habitacion
                HABITACION h = new HABITACION();
                h.IDHABITACION     = sh.id();
                h.NUMERO           = numero;
                h.TIPO_CAMA        = tipoCama;
                h.ACCESORIOS       = accesorios;
                h.PRECIO           = precio;
                h.IDADMINISTRADOR  = 1;
                h.ESTADOHABITACION = 1;

                if (this.BuscarHabitacion((int)h.NUMERO) == false)
                {
                    if ((int)h.NUMERO >= 0)
                    {
                        if (h.PRECIO >= 0)
                        {
                            sh.addEntity(h);
                            MessageBox.Show("Habitacion Agregada.", "Agregar Habitacion", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                            return(true);
                        }
                        else
                        {
                            MessageBox.Show("El precio debe ser mayor o igual a 0.", "Agregar Habitacion", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                            return(false);
                        }
                    }
                    else
                    {
                        MessageBox.Show("La habitacion: " + h.NUMERO + " debe ser mayor o igual a 0.", "Agregar Habitacion", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                        return(false);
                    }
                }
                else
                {
                    MessageBox.Show("La habitacion: " + h.NUMERO + " ya existe.", "Agregar Habitacion", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                    return(false);
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show("No se pudo crear la habitacion.", "Crear Habitacion", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                return(false);
            }
        }
Beispiel #3
0
        public void LlenarCampos(int idHabitacion, TextBox numeroHabitacion, TextBox tipoCama, TextBox precio, ComboBox estadoHabitacion, TextBox accesorios, Label id)
        {
            ServiceHabitacion       sh  = new ServiceHabitacion();
            ServiceEstadoHabitacion seh = new ServiceEstadoHabitacion();

            this.LlenarComboEstado(estadoHabitacion);

            HABITACION h = sh.getEntity(idHabitacion);

            numeroHabitacion.Text = h.NUMERO.ToString();
            tipoCama.Text         = h.TIPO_CAMA;
            precio.Text           = h.PRECIO.ToString();
            accesorios.Text       = h.ACCESORIOS;
            id.Text = h.IDHABITACION.ToString();
            estadoHabitacion.SelectedIndex = (int)h.ESTADOHABITACION1.IDESTADO - 1;
        }
Beispiel #4
0
        public bool ModificarHabitacion(int id, int numero, string tipoCama, int precio, string estado, string accesorios)
        {
            ServiceHabitacion       sh  = new ServiceHabitacion();
            ServiceEstadoHabitacion seh = new ServiceEstadoHabitacion();

            ESTADOHABITACION eh = seh.getEntityDesc(estado);
            HABITACION       h  = new HABITACION();

            h.IDHABITACION     = id;
            h.NUMERO           = numero;
            h.TIPO_CAMA        = tipoCama;
            h.PRECIO           = precio;
            h.ESTADOHABITACION = eh.IDESTADO;
            h.ACCESORIOS       = accesorios;

            if (this.BuscarHabitacion((int)h.NUMERO) == false)
            {
                if (h.NUMERO >= 0)
                {
                    if (h.PRECIO >= 0)
                    {
                        sh.updEntity(h);
                        MessageBox.Show("Habitacion Modificada.", "Modificar Habitacion", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                        return(true);
                    }
                    else
                    {
                        MessageBox.Show("El precio debe ser mayor o igual a 0.", "Modificar Habitacion", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                        return(false);
                    }
                }
                else
                {
                    MessageBox.Show("La habitacion: " + h.NUMERO + " debe ser mayor o igual a 0.", "Modificar Habitacion", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                    return(false);
                }
            }
            else
            {
                MessageBox.Show("La habitacion: " + h.NUMERO + " ya existe.", "Modificar Habitacion", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                return(false);
            }
        }
Beispiel #5
0
        public List <HABITACION> ListadoHabitacion()
        {
            ServiceHabitacion sh = new ServiceHabitacion();

            return(sh.getEntities());
        }