Guest User

Untitled

a guest
May 25th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. [ServiceContract]
  2. public interface IFooBarService
  3. {
  4. [OperationContract]
  5. bool SetFooBar(FooBar fb);
  6. }
  7.  
  8. [DataContract]
  9. public class FooBar
  10. {
  11. [DataMember]
  12. public string ExternalId;
  13. [DataMember]
  14. public string Something;
  15. [DataMember]
  16. public List<Foo> Foos;
  17. [DataMember]
  18. public List<Bar> Bars;
  19. }
Add Comment
Please, Sign In to add comment