Logo
Explore Help
Register Sign In
dmolinari/PruebaGentle
1
0
Fork 0
You've already forked PruebaGentle
Code Issues Pull Requests Actions Packages Projects Releases Wiki Activity
Files
865cf9b3e860a97a8bc610544e1980c3d968e11d
PruebaGentle/Backend/Sql/sp_User_GetById.sql

11 lines
185 B
MySQL
Raw Normal View History

feat: Sistema de Usuarios - Backend CRUD + JWT Auth (Issue #1) Implementación fundacional del proyecto PruebaGentle: - Arquitectura Clean/Hexagonal: Core, Infrastructure, API - 6 Stored Procedures para CRUD + autenticación - JWT authentication con BCrypt password hashing - Docker Compose (SQL Server + Backend) - Solución .NET 10 con Dapper + SqlClient Closes #1
2026-03-31 17:36:04 -03:00
CREATE OR ALTER PROCEDURE sp_User_GetById
@Id INT
AS
BEGIN
SET NOCOUNT ON;
SELECT Id, Username, Email, NombreCompleto, FechaCreacion
FROM Users
WHERE Id = @Id;
END
Reference in New Issue Copy Permalink
Powered by Gitea Version: 1.25.5 Page: 16ms Template: 0ms
English
Bahasa Indonesia Deutsch English Español Français Gaeilge Italiano Latviešu Magyar nyelv Nederlands Polski Português de Portugal Português do Brasil Suomi Svenska Türkçe Čeština Ελληνικά Български Русский Українська فارسی മലയാളം 日本語 简体中文 繁體中文(台灣) 繁體中文(香港) 한국어
Licenses API