/Kinban.Contracts/ITfsGateway.cs
C# | 15 lines | 13 code | 2 blank | 0 comment | 0 complexity | dc477db024e9d14b694612fc6e3c710a MD5 | raw file
1using System.Collections.Generic; 2using System.ServiceModel; 3 4namespace Kinban.Contracts 5{ 6 [ServiceContract] 7 public interface ITfsGateway 8 { 9 [OperationContract] 10 List<Story> GetStories(List<string> projectNames); 11 12 [OperationContract] 13 void UpdateStory(Story story); 14 } 15}