public static DataTable ObtenerRenglones(EntidadRenglones entidad) { Estado = Funciones.ObtenerEstadoToken(entidad.txtToken); DT.Clear(); // 0 expirado, 1 vigente if (Estado == 1) { SqlCommand Comando = Conexion.crearComandoProc("RRHH.SPObtenerRenglones"); DT = Conexion.ejecutarComandoSelect(Comando); DT = Funciones.AgregarEstadoToken(DT, Estado.ToString()); } else { DT = Funciones.AgregarEstadoToken(DT, "0"); } return DT; }
public static DataTable ObtenerDatosRenglon(EntidadRenglones entidad) { Estado = Funciones.ObtenerEstadoToken(entidad.txtToken); DT.Clear(); // 0 expirado, 1 vigente if (Estado == 1) { SqlCommand Comando = Conexion.crearComandoProc("RRHH.SPObtenerDatosRenglon"); Comando.Parameters.AddWithValue("@_IdRegistro", entidad.IdRenglon); DT = Conexion.ejecutarComandoSelect(Comando); DT = Funciones.AgregarEstadoToken(DT, Estado.ToString()); } else { DT = Funciones.AgregarEstadoToken(DT, "0"); } return DT; }
public DataTable EliminarRenglon(EntidadRenglones entidad) { return(DatosRenglones.EliminarRenglon(entidad)); }
public DataTable ObtenerDatosRenglon(EntidadRenglones entidad) { return(DatosRenglones.ObtenerDatosRenglon(entidad)); }
public DataTable ActualizarRenglon(EntidadRenglones entidad) { return(DatosRenglones.ActualizarRenglon(entidad)); }
public DataTable AgregarRenglon(EntidadRenglones entidad) { return(DatosRenglones.AgregarRenglon(entidad)); }