* OdbcParameterTest.cs: Fixed compilation on 1.0 profile.
[mono.git] / mcs / class / System.Data / System.Data.Common / DbTransaction.cs
index 6a586aa04392a95a44c225d645ec966aea05a516..ecd803de560ba9e6dbcc2ac8e05b92c7ce8641eb 100644 (file)
@@ -5,8 +5,6 @@
 //   Tim Coleman (tim@timcoleman.com)
 //
 // Copyright (C) Tim Coleman, 2003
-//
-
 //
 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
 //
 
 #if NET_2_0 || TARGET_JVM
 
-namespace System.Data.Common {
+namespace System.Data.Common
+{
        public abstract class DbTransaction : MarshalByRefObject, IDbTransaction, IDisposable
        {
                #region Constructors
 
-               [MonoTODO]
                protected DbTransaction ()
                {
                }
@@ -50,29 +48,33 @@ namespace System.Data.Common {
                        get { return DbConnection; }
                }
 
-               protected abstract DbConnection DbConnection { get; }
+               protected abstract DbConnection DbConnection {
+                       get;
+               }
 
                IDbConnection IDbTransaction.Connection {
                        get { return (IDbConnection) Connection; }
                }
 
-               public abstract IsolationLevel IsolationLevel { get; }
+               public abstract IsolationLevel IsolationLevel {
+                       get;
+               }
 
                #endregion // Properties
 
                #region Methods
 
                public abstract void Commit ();
+
                public abstract void Rollback ();
 
-               public virtual void Dispose ()
+               public void Dispose ()
                {
                        Dispose (true);
                }
 
                protected virtual void Dispose (bool disposing)
                {
-                       throw new NotImplementedException ();
                }
 
                #endregion // Methods