17 lines
361 B
C#
17 lines
361 B
C#
namespace Asistencia.Models;
|
|
|
|
public static class TipoAsistencia
|
|
{
|
|
public const int Presente = 1;
|
|
public const int Tardanza = 2;
|
|
public const int Ausente = 3;
|
|
|
|
public static string Nombre(int id) => id switch
|
|
{
|
|
Presente => "Presente",
|
|
Tardanza => "Tardanza",
|
|
Ausente => "Ausente",
|
|
_ => "Desconocido"
|
|
};
|
|
}
|