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
4b44a8da08b417f018cc92085c93a25592164d46
PruebaGentle/Backend/PruebaGentle.Core/Interfaces/IUserRepository.cs

15 lines
403 B
C#
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
using PruebaGentle.Core.Entities;
namespace PruebaGentle.Core.Interfaces;
public interface IUserRepository
{
Task<User> CreateAsync(User user);
Task<User?> GetByIdAsync(int id);
Task<IEnumerable<User>> GetAllAsync();
Task<User?> UpdateAsync(User user);
Task<bool> DeleteAsync(int id);
Task<User?> GetByUsernameAsync(string username);
feat: Add RegisterAsync endpoint to AuthController (Refs #2)
2026-04-01 13:15:22 -03:00
Task<User> RegisterAsync(User user);
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
}
Reference in New Issue Copy Permalink
Powered by Gitea Version: 1.25.5 Page: 14ms 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