Files
pyrofetes-backend/PyroFetes/Repositories/QuotationProductsRepository.cs
T
2026-05-24 17:24:44 +01:00

5 lines
231 B
C#

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