36 lines
790 B
C#
36 lines
790 B
C#
///////////////////////////////////////////////////////////
|
|
// WarrantyStatus.cs
|
|
// Implementation of Class WarrantyStatus
|
|
// CSLA type: enumeration
|
|
// Created on: 14-Feb-2005
|
|
// Object design: John
|
|
// Coded: John
|
|
///////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
namespace GZTW.AyaNova.BLL
|
|
{
|
|
/// <summary>
|
|
/// Warranty status of <see cref="Unit"/>
|
|
/// </summary>
|
|
public enum WarrantyStatus : int
|
|
{
|
|
|
|
/// <summary>
|
|
/// No current or past warranty
|
|
/// </summary>
|
|
None = 1,
|
|
/// <summary>
|
|
/// Expired - had a warranty but has now expired
|
|
/// </summary>
|
|
Expired=2,
|
|
/// <summary>
|
|
/// Active warranty / in-warranty
|
|
/// </summary>
|
|
Active = 3
|
|
|
|
}//end WarrantyStatus
|
|
|
|
}//end namespace GZTW.AyaNova.BLL |