public void Write(string tema, string fecha) { using (GlobalDbContext dbContext = new GlobalDbContext()) { TFC tfc = new TFC() { Tema = tema, Fecha = fecha }; dbContext.Add(tfc); dbContext.SaveChanges(); } }
public void Delete(int num_orden) { using (GlobalDbContext dbContext = new GlobalDbContext()) { TFC tfc = dbContext.TFCs(true) .Where(s => s.Num_orden == num_orden) .FirstOrDefault(); if (tfc != null) { dbContext.Remove(tfc); dbContext.SaveChanges(); } } }
public void Update(int num_orden, string tema, string fecha) { using (GlobalDbContext dbContext = new GlobalDbContext()) { TFC tfc = dbContext.TFCs(true) .Where(s => s.Num_orden == num_orden) .FirstOrDefault(); if (tfc != null) { tfc.Tema = tema; tfc.Fecha = fecha; dbContext.SaveChanges(); } } }