34 lines
614 B
C#
34 lines
614 B
C#
using ProjectLibrary.Entites;
|
|
|
|
|
|
namespace ProjectLibrary.Repositories.Implementations
|
|
{
|
|
public class LibraryRepository : ILibraryRepository
|
|
{
|
|
public void CreateLibrary(Library library)
|
|
{
|
|
|
|
}
|
|
|
|
public void UpdateLibrary(Library library)
|
|
{
|
|
|
|
}
|
|
|
|
public void DeleteLibrary(int id)
|
|
{
|
|
|
|
}
|
|
|
|
public Library ReadLibraryById(int id)
|
|
{
|
|
return Library.CreateEntity(id, "", "", []);
|
|
}
|
|
|
|
public IEnumerable<Library> ReadLibraries()
|
|
{
|
|
return [];
|
|
}
|
|
}
|
|
}
|