using Microsoft.TeamFoundation.Client; using Pinwheel.SCM; namespace TFS_Notification_Service { public class TfsServer : IScmServer { private readonly TeamFoundationServer server; public TfsServer(TeamFoundationServer server) { this.server = server; } } }