public static void deleteProduct() { using (var db = new EstoqueContext()) { Servico servico = db.Servicos.Find(1); db.Servicos.Remove(servico); db.SaveChanges(); } return; }
public static void deleteProduct() { using (var db = new EstoqueContext()) { Peca peca = db.Pecas.Find(1); db.Pecas.Remove(peca); db.SaveChanges(); } return; }
public static Servico AgendarServico(Guid IdBuscado) { Servico servico; using (var db = new EstoqueContext()) { servico = db.Servicos.Find(IdBuscado); db.SaveChanges(); } return(servico); }
public static void Read() { using (var db = new EstoqueContext()) { List <Servico> servicos = db.Servicos.ToList(); foreach (Servico s in servicos) { Console.WriteLine("{0} {1} {2}", s.IdServico, s.Nome, s.Preco); } } return; }
public static void Read() { using (var db = new EstoqueContext()) { List <Cliente> clientes = db.Clientes.ToList(); foreach (Cliente c in clientes) { Console.WriteLine("{0} {1} {2} {3} {4}", c.Id, c.Nome, c.Endereco, c.Telefone, c.CPF); } } return; }
public static void Read() { using (var db = new EstoqueContext()) { List <Pedido> pedidos = db.Pedidos.ToList(); foreach (Pedido p in pedidos) { Console.WriteLine("{0} {1}", p.IdPedido, p.DataPedido); } } return; }
public static void Read() { using (var db = new EstoqueContext()) { List <Peca> pecas = db.Pecas.ToList(); foreach (Peca p in pecas) { Console.WriteLine("{0} {1} {2} {3} {4}", p.IdPeca, p.Nome, p.Marca, p.Quantidade, p.Preco); } } return; }
public static Peca Vender(Guid IdBuscado, int quantidadeCompra) { Peca peca; using (var db = new EstoqueContext()) { peca = db.Pecas.Find(IdBuscado); if (peca.Quantidade >= quantidadeCompra) { peca.Quantidade = peca.Quantidade - quantidadeCompra; } else { Console.WriteLine("Não foi possível realizar a compra. Total de peças: ", peca.Quantidade); } db.SaveChanges(); } return(peca); }