Skip to content

Commit

Permalink
Update IDBHelper.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Peled-Zohar authored Aug 9, 2017
1 parent d159602 commit 14bc06d
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions ADONETHelper/ADONETHelper/IDBHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,6 @@ public interface IDBHelper
/// <param name="commandType">One of the Sql.Data.CommandType values. The default is Text.</param>
/// <param name="parameters">Parameters of the SQL statement.</param>
/// <returns>An instance of the DataTable class with the results of the SQL query.</returns>
/// <remarks>
/// 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.
/// </remarks>
DataTable FillDataTable(string sql, CommandType commandType, params IDbDataParameter[] parameters);

/// <summary>
Expand Down Expand Up @@ -103,7 +99,7 @@ public interface IDBHelper
/// <param name="name">The name of the parameter.</param>
/// <param name="type">The type of the parameter.</param>
/// <param name="value">The value of the parameter.</param>
/// <returns>An input parameter with the specified name, type and value</returns>
/// <returns>An input parameter with the specified name, type and value.</returns>
IDbDataParameter CreateParameter(string name, ADONETType type, object value);

/// <summary>
Expand All @@ -113,7 +109,7 @@ public interface IDBHelper
/// <param name="type">The type of the parameter.</param>
/// <param name="size">The size of the parameter.</param>
/// <param name="value">The value of the parameter.</param>
/// <returns></returns>
/// <returns>An input parameter with the specified name, type, size and value.</returns>
IDbDataParameter CreateParameter(string name, ADONETType type, int size, object value);

}
Expand Down

0 comments on commit 14bc06d

Please sign in to comment.