/// <summary>
        /// Pulls the current data from the database and updates the incidence listing
        /// </summary>
        protected void FillData()
        {
            List <IncidentModel> incidences = IncidenceBL.GetIncidentList();

            IncidentGrid.DataSource = incidences;
            IncidentGrid.DataBind();
        }