public PagamentoRepository(ProductryDbContext productryDbContext) : base(productryDbContext) { }
public Repository(ProductryDbContext productryDbContext) { Db = productryDbContext; DbSet = productryDbContext.Set <T>(); }
public ComprasRepository(ProductryDbContext productryDbContext) : base(productryDbContext) { }