forked from sanchezvem/PyroFetes
5 lines
230 B
C#
5 lines
230 B
C#
using PyroFetes.Models;
|
|
|
|
namespace PyroFetes.Repositories;
|
|
|
|
public class ProductDeliveriesRepository(PyroFetesDbContext pyrofetesContext, AutoMapper.IMapper mapper) : PyrofetesRepository<ProductDelivery>(pyrofetesContext, mapper); |