using System; namespace mCloudAwk { public interface IMCloudAwk : IDisposable { TConnection[] GetConnections(); void AddConnection(TConnection t); void DeleteConnection(string name); int TestConnection(string name); } }