Exemplo n.º 1
0
        public DataSet GetAllLocationDataSet()
        {
            LocationData data = new LocationData();
            DataSet      ds   = new DataSet();

            try
            {
                ds = data.GetAllLocationDataSet();
            }
            catch (Exception ex)
            {
                log.Write(ex.Message, "GetAllLocationDataSet");
                throw (ex);
            }
            finally
            {
                data = null;
            }
            return(ds);
        }