public void Export()
        {
            TrainingComponent tr = new TrainingComponent();

            tr.Export();
            Assert.IsNotNull(tr);

            TR.Business.TrainingComponent trb = new TR.Business.TrainingComponent();

            Assert.IsNotNull(trb);
        }
        /// <summary>
        /// Calls the Export business method of the TrainingComponent.
        /// </summary>
        public void Export()
        {
            var bc = new TrainingComponent();

            bc.Export();
        }