feat: implement core domain models, authentication service, and UI components for the attendance system
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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"
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user