protected override void Get()
        {
            TrainingProductManager mgr = new TrainingProductManager();

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

            //Entity holds the current ProductID
            Entity = mgr.Get(Convert.ToInt32(EventArgument));
            // Entity = mgr.Get(Convert.ToInt32("6"));

            //Set to Edit view Mode
            base.Edit();
        }