/Kinban.Contracts/ITfsGateway.cs
# · C# · 15 lines · 13 code · 2 blank · 0 comment · 0 complexity · dc477db024e9d14b694612fc6e3c710a MD5 · raw file
- using System.Collections.Generic;
- using System.ServiceModel;
-
- namespace Kinban.Contracts
- {
- [ServiceContract]
- public interface ITfsGateway
- {
- [OperationContract]
- List<Story> GetStories(List<string> projectNames);
-
- [OperationContract]
- void UpdateStory(Story story);
- }
- }