20 lines
442 B
C#
Raw Permalink Normal View History

2024-10-11 15:51:22 +04:00
using LibraryDataModels.Dtos;
using LibraryDataModels.Views;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LibraryContracts.StorageContracts
{
public interface IBookStorage
{
List<BookView> GetFullList();
BookView? GetElement(BookDto model);
BookView? Insert(BookDto model);
BookView? Update(BookDto model);
BookView? Delete(BookDto model);
}
}