public Categoria Buscar(int id)
 {
     using (var context = new ProjetoContext())
     {
         return(context.Categoria.Find(id));
     }
 }
Beispiel #2
0
 public Produto Buscar(int id)
 {
     using (var context = new ProjetoContext())
     {
         return(context.Produto.Find(id));
     }
 }
Beispiel #3
0
 public PessoaJuridica Buscar(int id)
 {
     using (var context = new ProjetoContext())
     {
         return(context.PessoaJuridica.Find(id));
     }
 }
Beispiel #4
0
 public IList <PessoaJuridica> Lista()
 {
     using (var context = new ProjetoContext())
     {
         return(context.PessoaJuridica.ToList());
     }
 }
Beispiel #5
0
 public IList <Produto> Lista()
 {
     using (var context = new ProjetoContext())
     {
         return(context.Produto.ToList());
     }
 }
 public Login Buscar(int id)
 {
     using (var context = new ProjetoContext())
     {
         return(context.Login.Find(id));
     }
 }
Beispiel #7
0
 public Vendas Buscar(int id)
 {
     using (var context = new ProjetoContext())
     {
         return(context.Vendas.Find(id));
     }
 }
 public IList <Login> Lista()
 {
     using (var context = new ProjetoContext())
     {
         return(context.Login.ToList());
     }
 }
Beispiel #9
0
 public IList <Vendas> Lista()
 {
     using (var context = new ProjetoContext())
     {
         return(context.Vendas.ToList());
     }
 }
 public IList <Categoria> Lista()
 {
     using (var context = new ProjetoContext())
     {
         return(context.Categoria.ToList());
     }
 }
 public TipoUsuario Buscar(int id)
 {
     using (var context = new ProjetoContext())
     {
         return(context.TipoUsuario.Find(id));
     }
 }
 public IList <TipoUsuario> Lista()
 {
     using (var context = new ProjetoContext())
     {
         return(context.TipoUsuario.ToList());
     }
 }
Beispiel #13
0
 public void Adicionar(Login login)
 {
     using (var context = new ProjetoContext())
     {
         context.Login.Add(login);
         context.SaveChanges();
     }
 }
Beispiel #14
0
 public void Atualizar(Promocao promocao)
 {
     using (var context = new ProjetoContext())
     {
         context.Promocao.Update(promocao);
         context.SaveChanges();
     }
 }
Beispiel #15
0
 public void Atualizar(Vendas venda)
 {
     using (var context = new ProjetoContext())
     {
         context.Vendas.Update(venda);
         context.SaveChanges();
     }
 }
 public void Remover(TipoUsuario tipo)
 {
     using (var context = new ProjetoContext())
     {
         context.TipoUsuario.Remove(tipo);
         context.SaveChanges();
     }
 }
Beispiel #17
0
 public void Adicionar(Produto produto)
 {
     using (var context = new ProjetoContext())
     {
         context.Produto.Add(produto);
         context.SaveChanges();
     }
 }
 public void Remover(Categoria categoria)
 {
     using (var context = new ProjetoContext())
     {
         context.Categoria.Remove(categoria);
         context.SaveChanges();
     }
 }
 public void Adicionar(Categoria categoria)
 {
     using (var context = new ProjetoContext())
     {
         context.Categoria.Add(categoria);
         context.SaveChanges();
     }
 }
 public void Atualizar(TipoUsuario tipo)
 {
     using (var context = new ProjetoContext())
     {
         context.TipoUsuario.Update(tipo);
         context.SaveChanges();
     }
 }
Beispiel #21
0
 public void Remover(Login login)
 {
     using (var context = new ProjetoContext())
     {
         context.Login.Remove(login);
         context.SaveChanges();
     }
 }
Beispiel #22
0
 public void Remover(PessoaJuridica pessoaJuridica)
 {
     using (var context = new ProjetoContext())
     {
         context.PessoaJuridica.Remove(pessoaJuridica);
         context.SaveChanges();
     }
 }
Beispiel #23
0
 public void Atualizar(Login login)
 {
     using (var context = new ProjetoContext())
     {
         context.Login.Update(login);
         context.SaveChanges();
     }
 }
Beispiel #24
0
 public void Remover(Vendas vendas)
 {
     using (var context = new ProjetoContext())
     {
         context.Vendas.Remove(vendas);
         context.SaveChanges();
     }
 }
Beispiel #25
0
 public void Atualizar(ProdutoVendas pv)
 {
     using (var context = new ProjetoContext())
     {
         context.ProdutoVendas.Update(pv);
         context.SaveChanges();
     }
 }
 public void Adicionar(TipoUsuario tipo)
 {
     using (var context = new ProjetoContext())
     {
         context.TipoUsuario.Add(tipo);
         context.SaveChanges();
     }
 }
Beispiel #27
0
 public void Remover(Produto produto)
 {
     using (var context = new ProjetoContext())
     {
         context.Produto.Remove(produto);
         context.SaveChanges();
     }
 }
Beispiel #28
0
 public void Adicionar(PessoaJuridica pessoaJuridica)
 {
     using (var context = new ProjetoContext())
     {
         context.PessoaJuridica.Add(pessoaJuridica);
         context.SaveChanges();
     }
 }
Beispiel #29
0
 public void Adicionar(Vendas vendas)
 {
     using (var context = new ProjetoContext())
     {
         context.Vendas.Add(vendas);
         context.SaveChanges();
     }
 }
Beispiel #30
0
 public void Remover(ProdutoVendas pv)
 {
     using (var context = new ProjetoContext())
     {
         context.ProdutoVendas.Remove(pv);
         context.SaveChanges();
     }
 }