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