Files
Umbraco-CMS/umbraco/datalayer/IParameter.cs
Shandem f6d0d043b5 DO NOT DOWNLOAD. DOWNLOAT LATEST STABLE FROM RELEASE TAB
Created 4.1.0 branch

[TFS Changeset #55082]
2009-06-19 07:39:16 +00:00

32 lines
849 B
C#

/************************************************************************************
*
* Umbraco Data Layer
* MIT Licensed work
* ©2008 Ruben Verborgh
*
***********************************************************************************/
using System;
using System.Data;
namespace umbraco.DataLayer
{
/// <summary>
/// Interface for a parameter of a data layer instruction.
/// </summary>
public interface IParameter
{
/// <summary>
/// Gets the name of the parameter.
/// </summary>
/// <value>The name of the parameter.</value>
string ParameterName { get; }
/// <summary>
/// Gets the value of the parameter.
/// </summary>
/// <value>The value of the parameter.</value>
object Value { get; }
}
}