public DataTable GetUserCountries()
 {
     try
     {
         //Instantiate the DBCurrentUser object
         DBCurrentUser = new DBCurrentUser(this.CurrentConnectionManager);
         //Get the table containing the user information
         DataTable userTable = DBCurrentUser.GetUserCountries(_InergyLogin);
         return(userTable);
     }
     catch (Exception ex)
     {
         throw new IndException(ex);
     }
 }