// with addition of the HandleRequest, this method no longer needed to be public
        protected override void Get()
        {
            TrainingProductManager mgr = new TrainingProductManager();
            Products = mgr.Get(SearchEntity);

            base.Get();
        }
        protected override void Edit()
        {
            TrainingProductManager mgr = new TrainingProductManager();

            // we're going to set the entity/member variable to hold the current product, this is the one we're going to bind to the input area, input form for the user.
            Entity = mgr.Get(Convert.ToInt32(EventArgument));

            //EditMode();
            base.EditMode();
        }