public Autentificacion AutentificacionBC(string codigo, string password)
        {
            AutentificacionBC bc = new AutentificacionBC();
            AutentificacionBE be = new AutentificacionBE();
            Autentificacion dc = new Autentificacion();

            be = bc.Autentificacion(codigo, password);

            dc.codigo = be.codigo;
            dc.id = be.id;
            dc.nombre = be.nombre;
            dc.periodo = be.periodo;

            return dc;
        }
        public Autentificaciones[] GetAutentificacion(string codigo, string password)
        {
            try
            {
                AutentificacionSC alumno;
                alumno = new AutentificacionSC();
                Autentificacion dc = new Autentificacion();

                dc = alumno.AutentificacionBC(codigo, password);

                List<Autentificaciones> widgets = new List<Autentificaciones>();
                Autentificaciones objeto = new Autentificaciones();
                objeto.autentificacion = dc;
                widgets.Add(objeto);
                return widgets.ToArray();
            }
            catch (Exception ex)
            {

                throw;
            }
        }