/// <summary> /// Metodos necesarios para realizar un CRUD de la Entidad Vuelo /// </summary> public Boolean insertaVuelo(VUELO objA) { Int32 cambios = 0; using (var db = new AgenciaContext()) { db.VUELOes.Add(objA); cambios = db.SaveChanges(); } return(cambios > 0 ? true : false); }
public Boolean eliminarVuelo(VUELO objA) { Int32 cambios = 0; using (var db = new AgenciaContext()) { db.VUELOes.Remove(objA); cambios = db.SaveChanges(); } return(cambios > 0 ? true : false); }
public Boolean modificarVuelo(VUELO objA) { Int32 cambios = 0; using (var db = new AgenciaContext()) { db.VUELOes.Attach(objA); VUELO aux = new VUELO(); aux = db.VUELOes.Where(s => s.VUELO_CODIGO == objA.VUELO_CODIGO).FirstOrDefault <VUELO>(); if (aux != null) { aux = objA; } db.Entry(aux).State = System.Data.Entity.EntityState.Modified; cambios = db.SaveChanges(); } return(cambios > 0 ? true : false); }