Exemplo n.º 1
0
        public static DataTable Consulta_Id(int _codigo)
        {
            D_CONTROL_ASISTENCIA dato = new D_CONTROL_ASISTENCIA();

            dato._CODIGO = _codigo;

            return(dato.Consulta_Id(dato));
        }
Exemplo n.º 2
0
        public static string CambiarEstado(int _codigo, string _estado)
        {
            D_CONTROL_ASISTENCIA dato = new D_CONTROL_ASISTENCIA();

            dato._CODIGO = _codigo;
            dato._ESTADO = _estado;

            return(dato.Cambiar_Estado(dato));
        }
Exemplo n.º 3
0
        public static string Registrar(
            DateTime _fecha, int CodigoxPErosnalxTurnoxRuta,
            string _descripcion, string estado)
        {
            D_CONTROL_ASISTENCIA dato = new D_CONTROL_ASISTENCIA();

            dato._FECHA = _fecha;
            dato._CODIGO_PERSONALTURNO_RUTA = CodigoxPErosnalxTurnoxRuta;
            dato._DESCRIPCION = _descripcion;
            dato._ESTADO      = estado;
            return(dato.Registrar(dato));
        }