Exemplo n.º 1
0
 public void Delete()
 {
     using (ORMHandler orm = DatabaseManager.ORMHandler)
     {
         orm.BeginTransaction();
         Delete(orm);
         orm.Commit();
         orm.Close();
     }
 }