using KGIS.Framework.Common.Interface; using Kingo.Plugin.BGResultManager.Services; using Kingo.PluginServiceInterface; using UIShell.OSGi; namespace Kingo.Plugin.BGResultManager { public class Activator : IBundleActivator { IBGResultFormHelper _bGResultFormHelper = null; IReportService reportService; public void Start(IBundleContext context) { _bGResultFormHelper = new BGResultFormHelper(); context.AddService(_bGResultFormHelper); } public void Stop(IBundleContext context) { } } }