Exemple #1
0
 public async Task Actualizar(Sistematizacion Sistematizacion)
 {
     db.Entry(Sistematizacion).State = EntityState.Modified;
     await db.SaveChangesAsync();
 }
Exemple #2
0
 public async Task Actualizar(Sistematizacion Sistematizacion) => await objDb.Actualizar(Sistematizacion);
Exemple #3
0
 public async Task Agregar(Sistematizacion Sistematizacion)
 {
     db.Sistematizacion.Add(Sistematizacion);
     await db.SaveChangesAsync();
 }
Exemple #4
0
 public async Task Agregar(Sistematizacion Sistematizacion) => await objDb.Agregar(Sistematizacion);