using System;
using CMS.FormEngine;
using CMS.GlobalHelper;
///
/// Custom table item registration
///
[BizForm(BizFormType.CLASS_NAME, typeof(BizFormType))]
public partial class CMSModuleLoader
{
}
///
/// Sample custom table item class
///
public partial class BizFormType : BizFormItem
{
#region "Constants"
///
/// Class name of the item
///
public const string CLASS_NAME = "##CLASSNAME##";
#endregion
#region "Properties"
// ##PROPERTIES##
#endregion
#region "Methods"
///
/// Constructor
///
public BizFormType()
: base(CLASS_NAME)
{
}
#endregion
}