End of the day

This commit is contained in:
Cristiano
2025-11-06 17:51:00 +01:00
parent 76e48493f4
commit 0db72739aa
6 changed files with 24 additions and 22 deletions
@@ -0,0 +1,8 @@
using Ardalis.Specification.EntityFrameworkCore;
namespace PyroFetes.Repositories;
public abstract class PyrofetesRepository<T>(PyroFetesDbContext databaseContext, AutoMapper.IMapper mapper) : RepositoryBase<T>(databaseContext) where T : class
{
}