Esempio n. 1
0
        public static DataTable Exportar_Excel_Quinta_Categoria(ref BaseEntity Base, String SqlCommandString, Int32 QuintaID)
        {
            DataTable ListDetails = new DataTable();

            if (!String.IsNullOrEmpty(SqlCommandString))
            {
                ListDetails = BaseDao.GetListDataTableIDQuintaCategoria(ref Base, SqlCommandString, QuintaID);
            }
            else
            {
                Base.Errors.Add(new BaseEntity.ListError(new Exception(), "SQL Command String esta vacio o es nullo"));
            }
            return(ListDetails);
        }