namespace ProjectLibrary.Repositories { using ProjectLibrary.Entites; using ProjectLibrary.Entities; public interface IBookLibraryRepository { IEnumerable ReadBookLibraries(int? bookId = null, int? libraryId = null); void CreateBookLibrary(Book_Library bookLibrary); void DeleteBookLibrary(int bookId, int libraryId); } }