Mercurial > silverbladetech
annotate Library/LibrarySystem/Core/Publication.cs @ 41:dbd242eb9c33
Initial wave of TDD development
author | adminsh@apollo |
---|---|
date | Tue, 03 Apr 2012 23:29:32 +0100 |
parents | |
children | aef06698d9e2 |
rev | line source |
---|---|
41 | 1 using LibrarySystem.Interfaces; |
2 | |
3 namespace LibrarySystem.Core | |
4 { | |
5 public class Publication : IPublication | |
6 { | |
7 public string Author { get; set; } | |
8 public string ISBN { get; set; } | |
9 public IPublisher Publisher { get; set; } | |
10 public string Title { get; set; } | |
11 } | |
12 | |
13 } |