Refactored Setting

This commit is contained in:
Cristiano
2025-11-20 15:05:44 +01:00
parent ee9b4675dd
commit 8325aa0768
7 changed files with 53 additions and 47 deletions

View File

@@ -0,0 +1,5 @@
using PyroFetes.Models;
namespace PyroFetes.Repositories;
public class SettingsRepository(PyroFetesDbContext pyrofetesContext, AutoMapper.IMapper mapper) : PyrofetesRepository<Setting>(pyrofetesContext, mapper);