public ActionResult Create(Factura factura) { factura.fecha = DateTime.Now; _db.Factura.Add(factura); _db.SaveChanges(); return(RedirectToAction("DetalleVenta", new { id = factura.id_factura })); }
private void BtnSalvar_Click(object sender, RoutedEventArgs e) { Plano p = new Plano(); p.Nome = tbNome.Text; p.Numero = tbNumero.Text; if (op == "alterar") { using (DBContexto ctx = new DBContexto()) { p = ctx.Planos.Find(Convert.ToInt32(tbCodigo.Text)); if (p != null) { p.Nome = tbNome.Text; p.Numero = tbNumero.Text; ctx.SaveChanges(); } } } else { using (var ctx = new DBContexto()) { ctx.Planos.Add(p); ctx.SaveChanges(); } } this.Close(); }
public void Salvar(Despesa despesa) { Despesa despesaAtual; if (despesa.DespesaId == 0) { db.Despesa.Add(despesa); } else { despesaAtual = db.Despesa.Where(c => c.DespesaId == despesa.DespesaId).SingleOrDefault(); despesaAtual.CentroCustoLista = despesa.CentroCustoLista; despesaAtual.DataAtualizacao = despesa.DataAtualizacao; despesaAtual.DataCriacao = despesa.DataCriacao; despesaAtual.DataPagamento = despesa.DataPagamento; despesaAtual.DataVencimento = despesa.DataVencimento; despesaAtual.Descricao = despesa.Descricao; despesaAtual.UsuarioId = despesa.UsuarioId; despesaAtual.ValorAcrescimo = despesa.ValorAcrescimo; despesaAtual.ValorBruto = despesa.ValorBruto; despesaAtual.ValorDesconto = despesa.ValorDesconto; //despesaAtual.ValorLiquido = despesa.ValorLiquido; } db.SaveChanges(); }
private void BtnSalvar_Click(object sender, RoutedEventArgs e) { Medicamento m = new Medicamento(); m.Nome = tbNome.Text; m.Descricao = tbDescricao.Text; m.NumeroRegistro = Convert.ToInt32(tbNumeroRegistro.Text); if (op == "alterar") { using (DBContexto ctx = new DBContexto()) { m = ctx.Medicamentos.Find(Convert.ToInt32(tbCodigo.Text)); if (m != null) { m.Nome = tbNome.Text; m.Descricao = tbDescricao.Text; m.NumeroRegistro = Convert.ToInt32(tbNumeroRegistro.Text); ctx.SaveChanges(); } } } else { using (var ctx = new DBContexto()) { ctx.Medicamentos.Add(m); ctx.SaveChanges(); } } this.Close(); }
private void BtnSalvar_Click(object sender, RoutedEventArgs e) { Estado es = new Estado(); es.Nome = tbNome.Text; es.Sigla = tbSigla.Text; es.CodigoIBGE = Convert.ToInt32(tbCodigoIBGE.Text); es.PaisId = Convert.ToInt32(cbCodigoPais.SelectedValue); if (op == "alterar") { using (DBContexto ctx = new DBContexto()) { es = ctx.Estados.Find(Convert.ToInt32(tbCodigo.Text)); if (es != null) { es.Nome = tbNome.Text; es.Sigla = tbSigla.Text; es.CodigoIBGE = Convert.ToInt32(tbCodigoIBGE.Text); es.PaisId = Convert.ToInt32(cbCodigoPais.SelectedValue); ctx.SaveChanges(); } } } else { using (var ctx = new DBContexto()) { ctx.Estados.Add(es); ctx.SaveChanges(); } } this.Close(); }
private void BtnSalvar_Click(object sender, RoutedEventArgs e) { Cep c = new Cep(); c.NumeroCep = tbNumeroCep.Text; c.CidadeId = Convert.ToInt32(cbCodigoCidade.SelectedValue); if (op == "alterar") { using (DBContexto ctx = new DBContexto()) { c = ctx.Ceps.Find(Convert.ToInt32(tbCodigo.Text)); if (c != null) { c.NumeroCep = tbNumeroCep.Text; c.CidadeId = Convert.ToInt32(cbCodigoCidade.SelectedValue); ctx.SaveChanges(); } } } else { using (var ctx = new DBContexto()) { ctx.Ceps.Add(c); ctx.SaveChanges(); } } this.Close(); }
public ActionResult Create(Nuevo nuevo) { Clientes NewUser = new Clientes(); NewUser.ciudad = nuevo.ciudad; NewUser.correo = nuevo.email; NewUser.telefono = nuevo.telefono; NewUser.numeroDocumento = nuevo.numeroDocumento; NewUser.id_tipoDocumento = nuevo.tipoDoc; NewUser.nombreCliente = nuevo.nombre; _db.Clientes.Add(NewUser); _db.SaveChanges(); return(RedirectToAction("Index")); }
private void BtnFatura_Click(object sender, RoutedEventArgs e) { Faturamento f = new Faturamento(); f.Tipo = cbTipo.Text; f.DataConsulta = dpDataConsulta.SelectedDate.Value; f.HorarioConsuta = tpHoraConsulta.Text; f.MedicoId = Convert.ToInt32(cbCodigoMedico.SelectedValue); f.PessoaId = Convert.ToInt32(cbCodigoPessoa.SelectedValue); f.PlanoId = Convert.ToInt32(cbCodigoPlano.SelectedValue); f.Valor = Convert.ToDecimal(tbValor.Text); f.TipoPagamento = cbTipoPagamento.Text; f.Status = "Faturado"; using (DBContexto ctx = new DBContexto()) { Agendamento a = ctx.Agendamentos.Find(Convert.ToInt32(tbCodigoAgendamento.Text)); ctx.Agendamentos.Remove(a); ctx.Faturamentos.Add(f); ctx.SaveChanges(); } this.Close(); }
public ActionResult CreateRol(Rolconsulta rol) { if (ModelState.IsValid) { Rol nuevoRol = new Rol(); nuevoRol.nombreRol = rol.nombreRol.ToUpper(); _db.Rol.Add(nuevoRol); _db.SaveChanges(); return RedirectToAction("CreateRol"); } else { return RedirectToAction("CreateRol"); } }
public IHttpActionResult CriarLivros(LivroDTO livrosDTO) { if (!ModelState.IsValid) { return(BadRequest()); } var livros = Mapper.Map <LivroDTO, Livros>(livrosDTO); _contexto.Livros.Add(livros); _contexto.SaveChanges(); livrosDTO.Id = livros.Id; return(Created(new Uri(Request.RequestUri + "/" + livros.Id), livrosDTO)); }
private void BtnSalvar_Click(object sender, RoutedEventArgs e) { Banco b = new Banco(); b.Nome = tbNome.Text; b.Codigo = Convert.ToInt32(tbCodigoBanco.Text); if (op == "alterar") { using (DBContexto ctx = new DBContexto()) { b = ctx.Bancos.Find(Convert.ToInt32(tbCodigo.Text)); if (b != null) { b.Nome = tbNome.Text; b.Codigo = Convert.ToInt32(tbCodigoBanco.Text); ctx.SaveChanges(); } } } else { using (var ctx = new DBContexto()) { ctx.Bancos.Add(b); ctx.SaveChanges(); } } this.Close(); }
private void BtnSalvar_Click(object sender, RoutedEventArgs e) { Cidade ci = new Cidade(); ci.Nome = tbNome.Text; ci.CodigoIBGE = Convert.ToInt32(tbCodigoIBGE.Text); ci.EstadoId = Convert.ToInt32(cbCodigoEstado.SelectedValue); if (op == "alterar") { using (DBContexto ctx = new DBContexto()) { ci = ctx.Cidades.Find(Convert.ToInt32(tbCodigo.Text)); if (ci != null) { ci.Nome = tbNome.Text; ci.CodigoIBGE = Convert.ToInt32(tbCodigoIBGE.Text); ci.EstadoId = Convert.ToInt32(cbCodigoEstado.SelectedValue); ctx.SaveChanges(); } } } else { using (var ctx = new DBContexto()) { ctx.Cidades.Add(ci); ctx.SaveChanges(); } } this.Close(); }
public bool Inserir(Cliente cliente) { try { if (cliente != null) { db.Cliente.Add(cliente); db.SaveChanges(); } return(true); } catch (Exception ex) { return(false); throw new Exception("Motivo: " + ex.Message); } }
public ActionResult Create(Nuevo nuevo) { Usuarios NewUser = new Usuarios(); NewUser.id_rol = nuevo.id_rol; NewUser.direccion = nuevo.direccion; NewUser.correo = nuevo.email; NewUser.contraseña = nuevo.password; NewUser.telefono = nuevo.telefono; NewUser.UserProfile = nuevo.idUsuario; NewUser.numeroDocumentro = nuevo.numeroDocumento; NewUser.id_tipoDocumento = nuevo.tipoDoc; NewUser.nombre = nuevo.nombre; _db.Usuarios.Add(NewUser); _db.SaveChanges(); return(RedirectToAction("Index")); }
public ActionResult CrearProducto(ProductoDTO productoNuevo) { Producto productoN = new Producto(); productoN.nombre = productoNuevo.nombre; productoN.precio = productoNuevo.precio; productoN.id_tipoProducto = productoNuevo.id_tipoProducto; _db.Producto.Add(productoN); _db.SaveChanges(); return(RedirectToAction("CrearProducto")); }
public ResponseService EliminaMunicipio(int idMunicipio) { try { var lq = _context.Municipios.FirstOrDefault(e => e.Id == idMunicipio); _context.Entry(lq).State = Microsoft.EntityFrameworkCore.EntityState.Deleted; _context.SaveChanges(); return(new ResponseService() { Messages = null, StatusCode = System.Net.HttpStatusCode.OK, Success = true }); } catch (Exception ex) { var message = new List <string>(); message.Add(ex.Message); return(new ResponseService() { Messages = message, StatusCode = System.Net.HttpStatusCode.InternalServerError, Success = false }); } }
public void Salvar(CentroCusto ccusto) { if (ccusto.CentroCustoId == 0) { db.CentroCusto.Add(ccusto); } else { var cc = db.CentroCusto.Where(c => c.CentroCustoId == ccusto.CentroCustoId).SingleOrDefault(); cc.Descricao = ccusto.Descricao; } db.SaveChanges(); }
private void BtnExcluirContasReceber_Click(object sender, RoutedEventArgs e) { if (dgMostraContasReceber.SelectedIndex >= 0) { ContasReceber cr = (ContasReceber)dgMostraContasReceber.Items[dgMostraContasReceber.SelectedIndex]; using (DBContexto ctx = new DBContexto()) { cr = ctx.ContasReceber.Find(cr.ContasReceberId); ctx.ContasReceber.Remove(cr); ctx.SaveChanges(); } } PreencherTabela(); }
private void BtnExcluirMedicamento_Click(object sender, RoutedEventArgs e) { if (dgMostraMedicamentos.SelectedIndex >= 0) { Medicamento m = (Medicamento)dgMostraMedicamentos.Items[dgMostraMedicamentos.SelectedIndex]; using (DBContexto ctx = new DBContexto()) { m = ctx.Medicamentos.Find(m.MedicamentoId); ctx.Medicamentos.Remove(m); ctx.SaveChanges(); } } PreencherTabela(); }
private void BtnExcluirAgendamento_Click(object sender, RoutedEventArgs e) { if (dgMostraAgendamentos.SelectedIndex >= 0) { Agendamento a = (Agendamento)dgMostraAgendamentos.Items[dgMostraAgendamentos.SelectedIndex]; using (DBContexto ctx = new DBContexto()) { a = ctx.Agendamentos.Find(a.AgendamentoId); ctx.Agendamentos.Remove(a); ctx.SaveChanges(); } } PreencherTabela(); }
private void BtnExcluiUsuario_Click(object sender, RoutedEventArgs e) { if (dgMostraUsuarios.SelectedIndex >= 0) { Usuario u = (Usuario)dgMostraUsuarios.Items[dgMostraUsuarios.SelectedIndex]; using (DBContexto ctx = new DBContexto()) { u = ctx.Usuarios.Find(u.UsuarioId); ctx.Usuarios.Remove(u); ctx.SaveChanges(); } } PreencherTabela(); }
private void BtnExcluirPais_Click(object sender, RoutedEventArgs e) { if (dgMostraPais.SelectedIndex >= 0) { Pais p = (Pais)dgMostraPais.Items[dgMostraPais.SelectedIndex]; using (DBContexto ctx = new DBContexto()) { p = ctx.Paises.Find(p.PaisId); ctx.Paises.Remove(p); ctx.SaveChanges(); } } PreencherTabela(); }
private void BtnExcluirCep_Click(object sender, RoutedEventArgs e) { if (dgMostraCep.SelectedIndex >= 0) { Cep c = (Cep)dgMostraCep.Items[dgMostraCep.SelectedIndex]; using (DBContexto ctx = new DBContexto()) { c = ctx.Ceps.Find(c.CepId); ctx.Ceps.Remove(c); ctx.SaveChanges(); } } PreencherTabela(); }
private void BtnExcluirEstado_Click(object sender, RoutedEventArgs e) { if (dgMostraEstados.SelectedIndex >= 0) { Estado es = (Estado)dgMostraEstados.Items[dgMostraEstados.SelectedIndex]; using (DBContexto ctx = new DBContexto()) { es = ctx.Estados.Find(es.EstadoId); ctx.Estados.Remove(es); ctx.SaveChanges(); } } PreencherTabela(); }
private void BtnExcluirBanco_Click(object sender, RoutedEventArgs e) { if (dgMostraBanco.SelectedIndex >= 0) { Banco b = (Banco)dgMostraBanco.Items[dgMostraBanco.SelectedIndex]; using (DBContexto ctx = new DBContexto()) { b = ctx.Bancos.Find(b.BancoId); ctx.Bancos.Remove(b); ctx.SaveChanges(); } } PreencherTabela(); }
private void BtnExcluirCidade_Click(object sender, RoutedEventArgs e) { if (dgMostraCidade.SelectedIndex >= 0) { Cidade ci = (Cidade)dgMostraCidade.Items[dgMostraCidade.SelectedIndex]; using (DBContexto ctx = new DBContexto()) { ci = ctx.Cidades.Find(ci.CidadeId); ctx.Cidades.Remove(ci); ctx.SaveChanges(); } } PreencherTabela(); }
private void BtnSalvar_Click(object sender, RoutedEventArgs e) { Usuario u = new Usuario(); u.Login = tbLogin.Text; u.Senha = pbSenha.Password; u.nivelAcesso = Convert.ToInt32(cbNivelDeAcesso.Text); if (op == "alterar") { using (DBContexto ctx = new DBContexto()) { u = ctx.Usuarios.Find(Convert.ToInt32(tbCodigo.Text)); if (u != null) { if (pbConfirmaSenha.Password == pbSenha.Password) { u.Login = tbLogin.Text; u.Senha = pbSenha.Password; u.nivelAcesso = Convert.ToInt32(cbNivelDeAcesso.Text); ctx.SaveChanges(); this.Close(); } else { MessageBox.Show("Senha não Confere"); } } } } else { using (var ctx = new DBContexto()) { if (pbSenha.Password == pbConfirmaSenha.Password) { ctx.Usuarios.Add(u); ctx.SaveChanges(); this.Close(); } else { MessageBox.Show("Senha não Cxonfere"); } } } }
public string RegistrarMovimientos(Movimiento movimiento) { string status = ""; try { using (var ctx = new DBContexto()) { ctx.Movimiento.Add(movimiento); ctx.SaveChanges(); return(status = "OK"); } } catch (Exception ex) { return(status = "ERROR"); } }
public string RegistrarCliente(Cliente cliente) { var status = ""; try { using (var ctx = new DBContexto()) { ctx.Cliente.Add(cliente); ctx.SaveChanges(); status = "OK"; return(status); } } catch (Exception ex) { return(status = Convert.ToString(ex)); } }
public string EditarGrupo(Grupo grupo) { var status = ""; try { using (var bd = new DBContexto()) { bd.Entry(grupo).State = System.Data.Entity.EntityState.Modified; bd.SaveChanges(); status = "OK"; } } catch (Exception ex) { status = "ERROR"; } return(status); }