using BookShopDataModels.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BookShopDataBaseImplement.Models { public class Book : IBookModel { public string Name => throw new NotImplementedException(); public double Cost => throw new NotImplementedException(); public int Count => throw new NotImplementedException(); public int GenreId => throw new NotImplementedException(); public int Id => throw new NotImplementedException(); } }