Exemplo n.º 1
0
 /**
  * Save the changes made to the database
  */
 public bool SaveChanges()
 {
     try
     {
         return(_context.SaveChanges() >= 0);
     }
     catch
     {
         return(false);
     }
 }
Exemplo n.º 2
0
 /**
  * Save the changes made to the database
  */
 public bool SaveChanges()
 {
     return(_context.SaveChanges() >= 0);
 }