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
6a4b16bb8ba678cb5bc0fdc4d919952be1c0a4ee
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: 15ms 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