5 lines
231 B
C#
5 lines
231 B
C#
using PyroFetes.Models;
|
|
|
|
namespace PyroFetes.Repositories;
|
|
|
|
public class QuotationProductsRepository(PyroFetesDbContext pyrofetesContext, AutoMapper.IMapper mapper) : PyrofetesRepository<QuotationProduct>(pyrofetesContext, mapper); |