comparison Library/LibrarySystem/Interfaces/IPerson.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 using LibrarySystem.Core;
3
4 namespace LibrarySystem.Interfaces
5 {
6 public interface IPerson
7 {
8 string Address { get; set; }
9 decimal CurrentBalance { get; set; }
10 IList<Rental> RentalHistory { get; set; }
11 string Name { get; set; }
12 }
13 }