public bool Crear(EN.Responsabilidades other) { bool resultado = false; try { //Mapeo BR.Responsabilidades res = new BR.Responsabilidades(other.placa, other.poliza, other.aseguradora, other.vencimiento, other.valor); //Insert bd db.Responsabilidades.Add(res); db.SaveChanges(); resultado = true; } catch (Exception) { throw; } return(resultado); }
public bool Actualizar(EN.Responsabilidades other) { bool resultado = false; try { BR.Responsabilidades update = db.Responsabilidades.Where(x => x.id == other.id).FirstOrDefault(); update.placa = other.placa; update.poliza = other.poliza; update.aseguradora = other.aseguradora; update.vencimiento = other.vencimiento; update.valor = other.valor; db.SaveChanges(); resultado = true; } catch (Exception) { throw; } return(resultado); }