/************************************************************************************ * * Umbraco Data Layer * MIT Licensed work * ©2008 Ruben Verborgh * ***********************************************************************************/ using System.Data; namespace umbraco.DataLayer { /// /// Interface for an that wraps around a . /// /// Data type of the wrapped parameter. public interface IParameterContainer

: IParameter where P : IDataParameter { ///

/// Gets the original parameter. /// /// The original parameter. P RawParameter { get; } } }