This commit is contained in:
2018-06-29 19:47:36 +00:00
commit be7f501333
3769 changed files with 1425961 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
///////////////////////////////////////////////////////////
// NotifyDeliveryMessageFormats.cs
// Implementation of Class NotifyDeliveryMessageFormats
// CSLA type: enumeration
// Created on: 06-Oct-2005
// Object design: John
// Coded: John 06-Oct-2005
///////////////////////////////////////////////////////////
namespace GZTW.AyaNova.BLL
{
/// <summary>
/// Methods of formatting the notification message
/// Used by the delivery procesor for the specific method chosen
/// Basically used to determine how much to condense the message.
///
/// </summary>
public enum NotifyDeliveryMessageFormats : int
{
/// <summary>
/// Most compact format
/// Messages are formatted as compactly as possible using abbreviations
/// and as little text as possible.
///
/// Most critical information first followed by increasingly
/// less critical information.
/// </summary>
Brief = 1,
/// <summary>
/// Most verbose format
/// As much information as possible that is relevant is included
/// in a full text format (no abbreviations, message formatted
/// for viewing not compactness)
/// </summary>
Full = 2
}//end NotifyDeliveryMessageFormats
}//end namespace GZTW.AyaNova.BLL