Exemple #1
0
        public void AltaLugar(CLugares objLugar, int opcion)
        {
            bool BolRegistro = false;

            if (ExisteConexion())
            {
                BolRegistro = objLugar.insertAlumno(opcion, objLugar);


                if (BolRegistro == true)
                {
                    //Se reguistro la cita, enviar mensaje al médico
                }
                else
                {
                }
            }
        }
Exemple #2
0
 public WLugares(ILugares InterfazLugares)
 {
     objLugares  = new CLugares();
     Manager     = new ManagerBD();
     ViewLugares = InterfazLugares;
 }