年度变更建库软件5.0版本
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

20 lines
531 B

using Kingo.PluginServiceInterface;
using System;
using UIShell.OSGi;
namespace Kingo.Plugin.DLTB_IDG
{
public class Activator : IBundleActivator
{
//DLTB_IDGHelper dLTB_IDGHelper = new DLTB_IDGHelper();
public void Start(IBundleContext context)
{
//BundleRuntime.Instance.AddService<IDataChange>(dLTB_IDGHelper);
}
public void Stop(IBundleContext context)
{
//BundleRuntime.Instance.RemoveService<IDataChange>(dLTB_IDGHelper);
}
}
}