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