Exemplo n.º 1
0
 public void Commit(bool Candispose = true)
 {
     try
     {
         DbWriteContext.SaveChanges();
     }
     catch (Exception ex)
     {
     }
     finally
     {
         if (Candispose)
         {
             DbWriteContext.Dispose();
         }
     }
 }