annotate Library/LibrarySystem/Interfaces/IPublisher.cs @ 43:aef06698d9e2 Test

Added the library tests
author Steven Hollidge <stevenhollidge@hotmail.com>
date Wed, 04 Apr 2012 19:20:20 +0100
parents dbd242eb9c33
children
rev   line source
41
dbd242eb9c33 Initial wave of TDD development
adminsh@apollo
parents:
diff changeset
1 namespace LibrarySystem.Interfaces
dbd242eb9c33 Initial wave of TDD development
adminsh@apollo
parents:
diff changeset
2 {
dbd242eb9c33 Initial wave of TDD development
adminsh@apollo
parents:
diff changeset
3 public interface IPublisher
dbd242eb9c33 Initial wave of TDD development
adminsh@apollo
parents:
diff changeset
4 {
43
aef06698d9e2 Added the library tests
Steven Hollidge <stevenhollidge@hotmail.com>
parents: 41
diff changeset
5 string Name { get; }
41
dbd242eb9c33 Initial wave of TDD development
adminsh@apollo
parents:
diff changeset
6 }
dbd242eb9c33 Initial wave of TDD development
adminsh@apollo
parents:
diff changeset
7 }