using System.ServiceModel; namespace TGServiceInterface { /// /// Interface for managing the service /// [ServiceContract] public interface ITGSService { /// /// Next stop of the service will not close DD and sets a flag for it to reattach once it restarts /// [OperationContract] void PrepareForUpdate(); /// /// Retrieve's the service's version /// /// The service's version [OperationContract] string Version(); } }