Mercurial > silverbladetech
view Library/LibrarySystem/Core/Rental.cs @ 42:0d4aff4f699d
Enabled nuget package restore on build
author | adminsh@apollo |
---|---|
date | Tue, 03 Apr 2012 23:32:40 +0100 |
parents | dbd242eb9c33 |
children |
line wrap: on
line source
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; } } }