view 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
line wrap: on
line source

using System.Collections.Generic;
using LibrarySystem.Core;

namespace LibrarySystem.Interfaces
{
    public interface IPerson
    {
        string Address { get; set; }
        decimal CurrentBalance { get; set; }
        IList<Rental> RentalHistory { get; set; }
        string Name { get; set; }
    }
}