8 lines
145 B
C#
8 lines
145 B
C#
using Common.Models.DBDomain;
|
|
|
|
namespace DBConnection.Repositories.Interfaces;
|
|
|
|
public interface IAuthorRepository : IRepository<Author>
|
|
{
|
|
|
|
} |