private void PopulateGrid()
        {
            string    errorMessage = String.Empty;
            DataTable table        = Controller.FrequentCallerReport(out errorMessage);

            if (String.IsNullOrEmpty(errorMessage))
            {
                if (table != null)
                {
                    frequentCallerGrid.DataSource = table;
                }
            }
        }