38 lines
1.3 KiB
C#
38 lines
1.3 KiB
C#
///////////////////////////////////////////////////////////
|
|
// ClientServiceRequestPriority.cs
|
|
// Implementation of ClientServiceRequestPriority
|
|
//
|
|
// Created on: 07-Jun-2004 8:41:30 AM
|
|
// Object design: Joyce & John Nov 8th 2006
|
|
// Coded: John 8-Nov-2006
|
|
///////////////////////////////////////////////////////////
|
|
|
|
using System;
|
|
using System.ComponentModel;
|
|
namespace GZTW.AyaNova.BLL
|
|
{
|
|
/// <summary>
|
|
/// User chosen priority for their service request
|
|
/// </summary>
|
|
[TypeConverter(typeof(EnumDescConverter))]
|
|
public enum ClientServiceRequestPriority : int
|
|
{
|
|
/// <summary>
|
|
/// Not urgent, service at time of choosing of service company
|
|
/// </summary>
|
|
[Description("LT:ClientServiceRequestPriority.NotUrgent")]
|
|
NotUrgent = 0,
|
|
/// <summary>
|
|
/// Not an emergency but quite urgent, service as soon as possible
|
|
/// </summary>
|
|
[Description("LT:ClientServiceRequestPriority.ASAP")]
|
|
ASAP = 1,
|
|
/// <summary>
|
|
/// Issue is an emergency, client expects service company to make it their first priority
|
|
/// </summary>
|
|
[Description("LT:ClientServiceRequestPriority.Emergency")]
|
|
Emergency = 2
|
|
|
|
}//end ClientServiceRequestPriority
|
|
}
|