Esempio n. 1
0
        public DataSet TraerPlanillaDetalle(string filtro)
        {
            IPlanillaSQL IPlanillaSQL = this.ObtenerInstancia();
            DataSet      datos        = IPlanillaSQL.TraerPlanillaDetalle(filtro);

            if (IPlanillaSQL.IsError)
            {
                this.IsError          = IPlanillaSQL.IsError;
                this.ErrorDescripcion = IPlanillaSQL.ErrorDescripcion;
            }
            return(datos);
        }