namespace w21library.classes.Intf { public interface ILibrary { IEnumerable GetActiveBooks(); bool RemoveBook(string guid); bool AddBook(string name, string author); } }