Exemplo n.º 1
0
 public void Delete(SubtitlesRow entity)
 {
     _context.SubtitlesRows.Remove(entity);
     _context.SaveChanges();
 }
Exemplo n.º 2
0
 public void Update(SubtitlesRow entity)
 {
     _context.Entry(entity).State = EntityState.Modified;
     _context.SaveChanges();
 }
Exemplo n.º 3
0
 public void Create(SubtitlesRow entity)
 {
     _context.SubtitlesRows.Add(entity);
     _context.SaveChanges();
 }