annotate Library/LibrarySystem/Interfaces/ILibrary.cs @ 121:8f94475d3146 tip

final code
author stevenh7776
date Thu, 31 May 2012 15:35:26 +0100
parents aef06698d9e2
children
rev   line source
41
dbd242eb9c33 Initial wave of TDD development
adminsh@apollo
parents:
diff changeset
1 using System.Collections.Generic;
dbd242eb9c33 Initial wave of TDD development
adminsh@apollo
parents:
diff changeset
2
dbd242eb9c33 Initial wave of TDD development
adminsh@apollo
parents:
diff changeset
3 namespace LibrarySystem.Interfaces
dbd242eb9c33 Initial wave of TDD development
adminsh@apollo
parents:
diff changeset
4 {
dbd242eb9c33 Initial wave of TDD development
adminsh@apollo
parents:
diff changeset
5 public interface ILibrary
dbd242eb9c33 Initial wave of TDD development
adminsh@apollo
parents:
diff changeset
6 {
43
aef06698d9e2 Added the library tests
Steven Hollidge <stevenhollidge@hotmail.com>
parents: 41
diff changeset
7 string Location { get; }
aef06698d9e2 Added the library tests
Steven Hollidge <stevenhollidge@hotmail.com>
parents: 41
diff changeset
8 IList<IStock> StockList { get; }
41
dbd242eb9c33 Initial wave of TDD development
adminsh@apollo
parents:
diff changeset
9
dbd242eb9c33 Initial wave of TDD development
adminsh@apollo
parents:
diff changeset
10 void AddStock(params IBook[] books);
dbd242eb9c33 Initial wave of TDD development
adminsh@apollo
parents:
diff changeset
11 bool IsBookAvailableByISBN(string isbn);
dbd242eb9c33 Initial wave of TDD development
adminsh@apollo
parents:
diff changeset
12 IList<IStock> FindBooks(string searchString);
43
aef06698d9e2 Added the library tests
Steven Hollidge <stevenhollidge@hotmail.com>
parents: 41
diff changeset
13 IBook GetBookById(string id);
aef06698d9e2 Added the library tests
Steven Hollidge <stevenhollidge@hotmail.com>
parents: 41
diff changeset
14 void LendBook(IPerson person, string id);
41
dbd242eb9c33 Initial wave of TDD development
adminsh@apollo
parents:
diff changeset
15 }
dbd242eb9c33 Initial wave of TDD development
adminsh@apollo
parents:
diff changeset
16 }