forked from sanchezvem/PyroFetes
6 lines
232 B
C#
6 lines
232 B
C#
using PyroFetes.Models;
|
|
|
|
namespace PyroFetes.Repositories;
|
|
|
|
public class QuotationProductsRepository(PyroFetesDbContext pyrofetesContext, AutoMapper.IMapper mapper) : PyrofetesRepository<QuotationProduct>(pyrofetesContext, mapper);
|