Mercurial > silverbladetech
view Library/LibrarySystem/Interfaces/IStock.cs @ 100:9b6855dc165e
Updated System.Windows into Libs
author | stevenhollidge <stevenhollidge@hotmail.com> |
---|---|
date | Sat, 05 May 2012 23:04:16 +0100 |
parents | aef06698d9e2 |
children |
line wrap: on
line source
namespace LibrarySystem.Interfaces { public interface IStock { bool IsAvailable { get; set; } IBook Book { get; } } }