public ProdutoRepository(ContextInMemory contextInMemory) : base(contextInMemory)
 {
 }
 public CompraRepository(ContextInMemory contextInMemory) : base(contextInMemory)
 {
 }
Ejemplo n.º 3
0
 public ClienteRepository(ContextInMemory contextInMemory) : base(contextInMemory)
 {
 }
Ejemplo n.º 4
0
 public RepositoryBase(ContextInMemory contextInMemory)
 {
     Db = contextInMemory;
 }
Ejemplo n.º 5
0
 public ProdutosDaCompraRepository(ContextInMemory contextInMemory) : base(contextInMemory)
 {
 }
 public SeedingService(ContextInMemory context)
 {
     _context = context;
 }