ILookupRepository.cs
上传用户:husern
上传日期:2022-03-24
资源大小:534k
文件大小:1k
- // -- FILE ------------------------------------------------------------------
- // name : ILookupRepository.cs
- // project : Itenso Web User Forms
- // created : Jani Giannoudis - 2008.10.30
- // language : c#
- // environment: .NET 2.0
- // copyright : (c) 2008 by Itenso GmbH, Switzerland
- // --------------------------------------------------------------------------
- using System;
- namespace Itenso.WebUserForms.Data.Lookup
- {
- // ------------------------------------------------------------------------
- public interface ILookupRepository : ILookupProvider
- {
- // ----------------------------------------------------------------------
- bool Contains( string lookupName, string formType );
- // ----------------------------------------------------------------------
- void Add( string lookupName, string formType,
- ILookupValueCollection lookupValues );
- // ----------------------------------------------------------------------
- /// <summary>
- /// Removes a lookup.
- /// </summary>
- /// <param name="variableName">the name of the lookup to remove.</param>
- void Remove( string lookupName, string formType );
- // ----------------------------------------------------------------------
- /// <summary>
- /// Removes all lookups.
- /// </summary>
- void Clear();
- } // interface ILookupRepository
- } // namespace Itenso.WebUserForms.Data.Lookup
- // -- EOF -------------------------------------------------------------------