public void Commit()
 {
     _context.SaveChanges();
 }
Example #2
0
 public bool Commit()
 {
     return(_context.SaveChanges() > 0);
 }