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