Files
MetaCourse/pyrofetes/pyrofetes-backend/PyroFetes/Repositories/QuotationsRepository.cs
T
2026-05-05 10:53:52 +02:00

5 lines
217 B
C#

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