9 lines
255 B
C#
9 lines
255 B
C#
using Ardalis.Specification.EntityFrameworkCore;
|
|
|
|
namespace PyroFetes.Repositories;
|
|
|
|
public abstract class PyrofetesRepository<T>(PyroFetesDbContext databaseContext, AutoMapper.IMapper mapper) : RepositoryBase<T>(databaseContext) where T : class
|
|
{
|
|
|
|
}
|