Files
PyroFetes/PyroFetes/Repositories/QuotationsRepository.cs
2025-11-20 14:20:25 +01:00

5 lines
217 B
C#

using PyroFetes.Models;
namespace PyroFetes.Repositories;
public class QuotationsRepository(PyroFetesDbContext pyrofetesContext, AutoMapper.IMapper mapper) : PyrofetesRepository<Quotation>(pyrofetesContext, mapper);