Mercurial > silverbladetech
diff Library/LibrarySystem/Core/Rental.cs @ 41:dbd242eb9c33
Initial wave of TDD development
author | adminsh@apollo |
---|---|
date | Tue, 03 Apr 2012 23:29:32 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Library/LibrarySystem/Core/Rental.cs Tue Apr 03 23:29:32 2012 +0100 @@ -0,0 +1,15 @@ +using System; +using LibrarySystem.Interfaces; + +namespace LibrarySystem.Core +{ + public class Rental : IRental + { + public DateTime ActualCheckIn { get; set; } + public IBook Book { get; set; } + public DateTime CheckOut { get; set; } + public DateTime ExpectedCheckIn { get; set; } + public decimal Fee { get; set; } + public IPerson Person { get; set; } + } +}