polishing.

This commit is contained in:
markpollack
2008-10-06 21:19:25 +00:00
parent d3cc1477a6
commit 485631e3b4

View File

@@ -53,8 +53,13 @@ namespace Spring.Data.Objects
public StoredProcedure()
{
CommandType = CommandType.StoredProcedure;
}
}
/// <summary>
/// Initializes a new instance of the <see cref="StoredProcedure"/> class.
/// </summary>
/// <param name="dbProvider">The db provider.</param>
/// <param name="procedureName">Name of the stored procedure.</param>
public StoredProcedure(IDbProvider dbProvider, string procedureName) : base(dbProvider, procedureName)
{
CommandType = CommandType.StoredProcedure;