Small patch from Gert to match MS
[mono.git] / mcs / class / System.Data / System.Data.Odbc / OdbcRowUpdatedEventArgs.cs
1 //
2 // System.Data.Odbc.OdbcRowUpdatedEventArgs.cs
3 //
4 // Author:
5 //   Rodrigo Moya (rodrigo@ximian.com)
6 //   Daniel Morgan (danmorg@sc.rr.com)
7 //   Tim Coleman (tim@timcoleman.com)
8 //
9 // (C) Ximian, Inc 2002
10 // Copyright (C) Tim Coleman, 2002
11 //
12
13 using System;
14 using System.Data;
15 using System.Data.Common;
16
17 namespace System.Data.Odbc {
18         public sealed class OdbcRowUpdatedEventArgs : RowUpdatedEventArgs 
19         {
20                 #region Constructors
21
22                 public OdbcRowUpdatedEventArgs (DataRow row, IDbCommand command, StatementType statementType, DataTableMapping tableMapping) 
23                         : base (row, command, statementType, tableMapping)
24                 {
25                 }
26
27                 #endregion // Constructors
28
29                 #region Properties
30
31                 public new OdbcCommand Command {
32                         get { return (OdbcCommand) base.Command; }
33                 }
34
35                 #endregion // Properties
36         }
37 }