21 lines
526 B
C#
21 lines
526 B
C#
|
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();
|
|||
|
}
|
|||
|
}
|