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