2004-03-10 Umadevi S (sumadevi@novell.com)
[mono.git] / mcs / class / System.Data / System.Data.OleDb / OleDbRowUpdatedEventArgs.cs
index 806565ef45f963d6fd379896904a7f7f1441b990..036e31bfaad8ae14263d756cc91384b3082a555a 100644 (file)
@@ -1,10 +1,12 @@
 //
 // System.Data.OleDb.OleDbRowUpdatedEventArgs
 //
-// Author:
+// Authors:
 //   Rodrigo Moya (rodrigo@ximian.com)
+//   Tim Coleman (tim@timcoleman.com)
 //
 // Copyright (C) Rodrigo Moya, 2002
+// Copyright (C) Tim Coleman, 2002
 //
 
 using System.Data;
@@ -14,5 +16,31 @@ namespace System.Data.OleDb
 {
        public sealed class OleDbRowUpdatedEventArgs : RowUpdatedEventArgs
        {
+               #region Fields
+               
+               OleDbCommand command;
+
+               #endregion // Fields
+
+               #region Constructors
+
+               [MonoTODO]
+               public OleDbRowUpdatedEventArgs (DataRow dataRow, IDbCommand command, StatementType statementType, DataTableMapping tableMapping)
+                       : base (dataRow, command, statementType, tableMapping)
+
+               {
+                       this.command = (OleDbCommand) command;
+                       throw new NotImplementedException ();
+               }
+
+               #endregion // Constructors
+
+               #region Properties
+
+               public new OleDbCommand Command {
+                       get { return command; }
+               }
+
+               #endregion // Properties
        }
 }