IVariableProvider.cs
Upload User: husern
Upload Date: 2022-03-24
Package Size: 534k
Code Size: 1k
Category:

Editor

Development Platform:

C#

  1. // -- FILE ------------------------------------------------------------------
  2. // name       : IVariableProvider.cs
  3. // project    : Itenso Web User Forms
  4. // created    : Jani Giannoudis - 2008.10.30
  5. // language   : c#
  6. // environment: .NET 2.0
  7. // copyright  : (c) 2008 by Itenso GmbH, Switzerland
  8. // --------------------------------------------------------------------------
  9. using System;
  10. namespace Itenso.WebUserForms.Data.Variable
  11. {
  12. // ------------------------------------------------------------------------
  13. public interface IVariableProvider
  14. {
  15. // ----------------------------------------------------------------------
  16. IVariableSet GetVariables( string formType );
  17. } // interface IVariableProvider
  18. } // namespace Itenso.WebUserForms.Data.Variable
  19. // -- EOF -------------------------------------------------------------------