34 lines
614 B
C#
Raw Normal View History

2024-11-12 23:13:20 +04:00
using ProjectLibrary.Entites;
2024-11-12 23:13:20 +04:00
namespace ProjectLibrary.Repositories.Implementations
{
public class LibraryRepository : ILibraryRepository
{
public void CreateLibrary(Library library)
{
2024-11-12 23:13:20 +04:00
}
2024-11-20 19:31:06 +04:00
public void UpdateLibrary(Library library)
{
}
2024-11-12 23:13:20 +04:00
public void DeleteLibrary(int id)
{
2024-11-12 23:13:20 +04:00
}
public Library ReadLibraryById(int id)
{
return Library.CreateEntity(id, "", "", []);
2024-11-12 23:13:20 +04:00
}
public IEnumerable<Library> ReadLibraries()
{
return [];
2024-11-12 23:13:20 +04:00
}
}
}