comparison Library/LibrarySystem/Interfaces/IPublication.cs @ 41:dbd242eb9c33

Initial wave of TDD development
author adminsh@apollo
date Tue, 03 Apr 2012 23:29:32 +0100
parents
children aef06698d9e2
comparison
equal deleted inserted replaced
40:64c89891d7b6 41:dbd242eb9c33
1 namespace LibrarySystem.Interfaces
2 {
3 public interface IPublication
4 {
5 string Author { get; set; }
6 string ISBN { get; set; }
7 IPublisher Publisher { get; set; }
8 string Title { get; set; }
9 }
10 }