PIbd-22_Rogashova_E.A._SUBD/BookShop/Models/Book.cs

23 lines
579 B
C#
Raw Normal View History

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();
}
}