PageRenderTime 45ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/Kinban.Contracts/ITfsGateway.cs

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