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