Exemple #1
0
 public void Put(ContenidoVideo value)
 {
     _context.ContenidoVideo.Update(value);
     _context.SaveChanges();
 }
Exemple #2
0
 public void Delete(ContenidoVideo value)
 {
     _context.ContenidoVideo.Remove(value);
     _context.SaveChanges();
 }
Exemple #3
0
 public void Post(ContenidoVideo value)
 {
     _context.ContenidoVideo.Add(value);
     _context.SaveChanges();
 }
Exemple #4
0
 public void Put(ContenidoVideo value)
 {
     _contenidoVideoData.Put(value);
 }