annotate Library/LibrarySystem/Interfaces/IBook.cs @ 116:d3380f499575

requires layout tidy up
author stevenh7776
date Sun, 20 May 2012 18:48:00 +0100
parents aef06698d9e2
children
rev   line source
43
aef06698d9e2 Added the library tests
Steven Hollidge <stevenhollidge@hotmail.com>
parents: 41
diff changeset
1 namespace LibrarySystem.Interfaces
41
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 IBook : IPublication
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 Id { 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 }