using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace <%= fullNamespace %>.Constants
{
///
/// Constants used within the module.
///
public class ModuleConstants
{
///
/// The root path for .resx files.
///
public const string ResxPartialRoot = "~\\DesktopModules\\<%= friendlyName %>\\App_LocalResources\\";
///
/// The attribute name used in XML data nodes.
///
public const string DataNodeAttributesName = "name";
///
/// The path to the root data in XML.
///
public const string RootData = "/root/data";
///
/// The text suffix for keys ending with a period.
///
public const string PointText = ".text";
///
/// The name of the module folder.
///
public const string ModuleFolderName = "Company.Modules.<%= friendlyName %>";
///
/// The name of the supported module.
///
public const string SupportedModules = "<%= friendlyName %>";
///
/// The text used for editing.
///
public const string EditText = "EDIT";
///
/// The prefix used for database tables.
///
public const string DBTABLE_PREFIX = "<%= friendlyName %>";
///
/// The name of the column representing the item ID.
///
public const string ITEM_ID_COLUMN = "ItemId";
///
/// The name of the column representing the item name.
///
public const string ITEM_NAME_COLUMN = "ItemName";
///
/// The name of the column representing the item description.
///
public const string ITEM_DESCRIPTION_COLUMN = "ItemDescription";
///
/// The name of the column representing the assigned user ID.
///
public const string ASSIGNED_USER_ID_COLUMN = "AssignedUserId";
///
/// The name of the column representing the module ID.
///
public const string MODULE_ID_COLUMN = "ModuleId";
///
/// The name of the column representing the last modified by user ID.
///
public const string LAST_MODIFIED_BY_USER_ID_COLUMN = "LastModifiedByUserId";
///
/// The name of the column representing the last modified on date.
///
public const string LAST_MODIFIED_ON_DATE = "LastModifiedOnDate";
///
/// The name of the column representing the created by user ID.
///
public const string CREATED_BY_USER_ID_COLUMN = "CreatedByUserId";
///
/// The name of the column representing the created on date.
///
public const string CREATED_ON_DATE = "CreatedOnDate";
}
}