private void RemoveButton_Click(object sender, EventArgs e)
        {
            if (grid.SelectedRows.Count > 0)
            {
                if (SquadronContext.Confirm("Are you sure you wanted to remove the Solution?"))
                {
                    _solutionUtility.RemoveSolution(grid.SelectedRows[0].DataBoundItem as SolutionEntity);
                }
            }

            else
            {
                SquadronContext.Errr_PleaseSelect();
            }
        }