/************************************************************************************ * * Umbraco Data Layer * MIT Licensed work * ©2008 Ruben Verborgh * ***********************************************************************************/ using System; using System.Data.SqlClient; using System.Data.SqlTypes; namespace umbraco.DataLayer.SqlHelpers.SqlServer { /// /// Parameter class for the SqlServerHelper. /// public class SqlServerParameter : SqlParameterAdapter { #region Public Constructors /// /// Initializes a new instance of the class. /// /// Name of the parameter. /// Value of the parameter. public SqlServerParameter(string parameterName, object value) : base(new SqlParameter(parameterName, value)) { } #endregion } }