Esempio n. 1
0
        public static List <DataTable> GetListDataTable(ref BaseEntity Base, String SqlCommandString)
        {
            List <DataTable> ListDetails = new List <DataTable>();

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