You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
En este repositorio se encuentran 10 proyectos en los cuales viene documentado en cada uno que tecnologías se ocuparon, así como configuraciones, pruebas y ejecución.
El esquema que se utilizo fue un catálogo de usuarios
/// <summary>/// Represents a user entity./// </summary>publicclassUser{/// <summary>/// Gets or sets the user ID./// </summary>publicintId{get;set;}/// <summary>/// Gets or sets the user name./// </summary>publicstringName{get;set;}=default!;/// <summary>/// Gets or sets the user email./// </summary>publicstringEmail{get;set;}=default!;/// <summary>/// Gets or sets the user age./// </summary>publicintAge{get;set;}}