Exemplo n.º 1
0
 public FilmeRepository(LocadoraContext context)
 {
     _context = context;
 }
Exemplo n.º 2
0
 public AluguelRepository(LocadoraContext context)
 {
     _context = context;
 }
Exemplo n.º 3
0
 public ClienteRepository(LocadoraContext context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public LocadoraRepository(LocadoraContext context)
 {
     _context = context;
     _context.ChangeTracker.QueryTrackingBehavior = QueryTrackingBehavior.NoTracking;
 }