ProjectLib/ProjectLibrary/Repositores/ILibraryRepository.cs

15 lines
380 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 ILibraryRepository
{
IEnumerable<Library> ReadLibraries();
Library ReadLibraryById(int id);
void CreateLibrary(Library library);
void UpdateLibrary(Library library);
void DeleteLibrary(int id);
}
}