using System.ServiceModel;
namespace TGS.Interface.Components
{
///
/// Used for testing connections to the service without authentication
///
[ServiceContract]
public interface ITGConnectivity
{
///
/// Does nothing on the server end, but if the call completes, you can be sure you are connected. WCF won't throw until you try until you actually use the API
///
[OperationContract]
void VerifyConnection();
}
}