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

21 lines
526 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 Author : IAuthorModel
{
public string Surname => throw new NotImplementedException();
public string Name => throw new NotImplementedException();
public string Patronymic => throw new NotImplementedException();
public int Id => throw new NotImplementedException();
}
}