comparison Library/LibrarySystem/Interfaces/IPerson.cs @ 45:274fd2386d55

Merge with Test
author Steven Hollidge <stevenhollidge@hotmail.com>
date Wed, 04 Apr 2012 19:41:51 +0100
parents aef06698d9e2
children
comparison
equal deleted inserted replaced
42:0d4aff4f699d 45:274fd2386d55
1 using System.Collections.Generic; 1 
2 using LibrarySystem.Core;
3
4 namespace LibrarySystem.Interfaces 2 namespace LibrarySystem.Interfaces
5 { 3 {
6 public interface IPerson 4 public interface IPerson
7 { 5 {
8 string Address { get; set; } 6 string Address { get; }
9 decimal CurrentBalance { get; set; } 7 string Name { get; }
10 IList<Rental> RentalHistory { get; set; }
11 string Name { get; set; }
12 } 8 }
13 } 9 }