Exemplo n.º 1
0
 public BaseRepository(ILeilaoContext context, string collectionName)
     : this(context)
 {
     Collection = _context.Collection <T>(collectionName);
 }
Exemplo n.º 2
0
 public BaseRepository(ILeilaoContext context)
 {
     _context = context;
 }
Exemplo n.º 3
0
 public ProdutoRepository(ILeilaoContext context)
     : base(context, "Produto")
 {
 }
Exemplo n.º 4
0
 public ParticipanteRepository(ILeilaoContext context)
     : base(context, "Participante")
 {
 }
Exemplo n.º 5
0
 public ContaRepository(ILeilaoContext context)
     : base(context, "Conta")
 {
 }
Exemplo n.º 6
0
 public LeiloeiroRepository(ILeilaoContext context)
     : base(context, "Leiloeiro")
 {
 }