using FabAccessAPI.Schema; using System; namespace FabAccessAPI { public class API : IAPI { #region Private Members #endregion #region Constructors public API() { } #endregion #region Events public event EventHandler ConnectionStatusChanged; #endregion #region Members public ConnectionData ConnectionData { get; private set; } public ConnectionInfo ConnectionInfo { get; private set; } public bool IsConnected { get { throw new NotImplementedException(); } } public Session Session { get { throw new NotImplementedException(); } } #endregion #region Methods public void Connect(ConnectionData connectionData) { throw new NotImplementedException(); } public void Disconnect() { throw new NotImplementedException(); } public void Reconnect() { throw new NotImplementedException(); } public ConnectionInfo TestConnection(ConnectionData connectionData) { throw new NotImplementedException(); } #endregion } }