From 14bc06d9e9e315734778a1f47f5ff2d6e15b0267 Mon Sep 17 00:00:00 2001 From: Zohar Peled Date: Wed, 9 Aug 2017 19:05:27 +0300 Subject: [PATCH] Update IDBHelper.cs --- ADONETHelper/ADONETHelper/IDBHelper.cs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/ADONETHelper/ADONETHelper/IDBHelper.cs b/ADONETHelper/ADONETHelper/IDBHelper.cs index 2838310..4e99a64 100644 --- a/ADONETHelper/ADONETHelper/IDBHelper.cs +++ b/ADONETHelper/ADONETHelper/IDBHelper.cs @@ -63,10 +63,6 @@ public interface IDBHelper /// One of the Sql.Data.CommandType values. The default is Text. /// Parameters of the SQL statement. /// An instance of the DataTable class with the results of the SQL query. - /// - /// Note to inhreritors: Concrete DataAdapter might have an overload of the Fill method - /// that works directly with a data table. You might want to use it instead of this method. - /// DataTable FillDataTable(string sql, CommandType commandType, params IDbDataParameter[] parameters); /// @@ -103,7 +99,7 @@ public interface IDBHelper /// The name of the parameter. /// The type of the parameter. /// The value of the parameter. - /// An input parameter with the specified name, type and value + /// An input parameter with the specified name, type and value. IDbDataParameter CreateParameter(string name, ADONETType type, object value); /// @@ -113,7 +109,7 @@ public interface IDBHelper /// The type of the parameter. /// The size of the parameter. /// The value of the parameter. - /// + /// An input parameter with the specified name, type, size and value. IDbDataParameter CreateParameter(string name, ADONETType type, int size, object value); }