33 lines
767 B
C#
33 lines
767 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AYA.SlnSinortModel.Constantes
|
|
{
|
|
internal class Constantes
|
|
{
|
|
|
|
}
|
|
|
|
public class EnumTipoCodigoRespuesta
|
|
{
|
|
public const string EXITOSO = "EXITOSO";
|
|
public const string ERROR = "ERROR";
|
|
public const string ADVERTENCIA = "ADVERTENCIA";
|
|
}
|
|
|
|
public class EnumTipoEstado
|
|
{
|
|
public const int ACTIVO = 1;
|
|
public const int INICIAL = 2;
|
|
public const int CONSTRUCCION = 3;
|
|
public const int HISTORICO = 4;
|
|
public const int ACTIVA = 8;
|
|
public const int INACTIVA = 9;
|
|
public const int ELIMINADA = 10;
|
|
}
|
|
|
|
|
|
}
|