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