Mercurial > silverbladetech
comparison Library/LibrarySystem/Interfaces/IBook.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 using System.Collections.Generic; | |
2 | |
3 namespace LibrarySystem.Interfaces | |
4 { | |
5 public interface IBook : IPublication | |
6 { | |
7 string Id { get; set; } | |
8 decimal CurrentFee { get; set; } | |
9 IList<IRental> RentalHistory { get; set; } | |
10 } | |
11 } |