PIbd-22_Rogashova_E.A._SUBD/BookShopDataModels/Models/IBookModel.cs

17 lines
323 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BookShopDataModels.Models
{
public interface IBookModel: IId
{
string Name { get; }
double Cost { get; }
int Count { get; }
int GenreId { get; }
}
}