comparison Library/LibrarySystem/Interfaces/IStock.cs @ 43:aef06698d9e2 Test

Added the library tests
author Steven Hollidge <stevenhollidge@hotmail.com>
date Wed, 04 Apr 2012 19:20:20 +0100
parents dbd242eb9c33
children
comparison
equal deleted inserted replaced
42:0d4aff4f699d 43:aef06698d9e2
1 namespace LibrarySystem.Interfaces 1 namespace LibrarySystem.Interfaces
2 { 2 {
3 public interface IStock 3 public interface IStock
4 { 4 {
5 bool IsAvailable { get; set; } 5 bool IsAvailable { get; set; }
6 IBook Book { get; set; } 6 IBook Book { get; }
7 } 7 }
8 } 8 }