ProjectLib/ProjectLibrary/Repositores/IBookLibraryRepository.cs

13 lines
384 B
C#
Raw Normal View History

2024-11-12 23:13:20 +04:00
namespace ProjectLibrary.Repositories
{
using ProjectLibrary.Entites;
using ProjectLibrary.Entities;
public interface IBookLibraryRepository
{
2024-11-19 14:49:58 +04:00
IEnumerable<Book_Library> ReadBookLibraries(int? bookId = null, int? libraryId = null);
void CreateBookLibrary(Book_Library bookLibrary);
2024-11-12 23:13:20 +04:00
void DeleteBookLibrary(int bookId, int libraryId);
}
}