2002-08-16 Rodrigo Moya <rodrigo@ximian.com>
[mono.git] / mcs / class / System.Data / System.Data.OleDb / OleDbRowUpdatingEventArgs.cs
index 840c4b3aefd20543189944a062b5f02b448faa8f..8cf9aedafd23ef316448abca6b6f61257176d042 100644 (file)
@@ -1,10 +1,12 @@
 //
 // System.Data.OleDb.OleDbRowUpdatingEventArgs
 //
-// 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,33 @@ namespace System.Data.OleDb
 {
        public sealed class OleDbRowUpdatingEventArgs : RowUpdatingEventArgs
        {
+
+               #region Fields
+
+               OleDbCommand command = null;
+
+               #endregion
+
+               #region Constructors
+
+               [MonoTODO]
+               public OleDbRowUpdatingEventArgs (DataRow dataRow, IDbCommand command, StatementType statementType, DataTableMapping tableMapping)
+                       : base (dataRow, command, statementType, tableMapping)
+
+               {
+                       this.command = (OleDbCommand) command;
+                       throw new NotImplementedException ();
+               }
+
+               #endregion
+
+               #region Properties
+               
+               public new OleDbCommand Command {
+                       get { return command; }
+                       set { command = value; }
+               }
+
+               #endregion
        }
 }