using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.SDK.Module.AzureServiceBus { public interface IAzureServiceBusService { public TopClient GetTopClient(string TopName); public SubClient GetSubClient(string SubName); void init(); } }