Changeset 277bd72
- Timestamp:
- 10/22/25 22:52:41 (11 months ago)
- Branches:
- master
- Children:
- c7d4a59
- Parents:
- 41e4f9f
- Location:
- iknow-api
- Files:
-
- 8 edited
-
Controllers/AuthController.cs (modified) (1 diff)
-
Controllers/UsersControllers.cs (modified) (1 diff)
-
DTOs/UserDTO.cs (modified) (1 diff)
-
Program.cs (modified) (1 diff)
-
Repository/Implementations/UserRepository.cs (modified) (1 diff)
-
Repository/Interface/IUserRepository.cs (modified) (1 diff)
-
Services/Implementations/AuthService.cs (modified) (1 diff)
-
Services/Interfaces/IAuthService.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
iknow-api/Controllers/AuthController.cs
r41e4f9f r277bd72 1 using FinXaccesApi.DTOs;2 using FinXaccesApi.Services;1 using iknow_api.DTOs; 2 using iknow_api.Services; 3 3 using Microsoft.AspNetCore.Mvc; 4 4 //test 5 namespace FinXaccesApi.Controllers5 namespace iknow_api.Controllers 6 6 { 7 7 [ApiController] -
iknow-api/Controllers/UsersControllers.cs
r41e4f9f r277bd72 3 3 using Microsoft.AspNetCore.Mvc; 4 4 using iknow_api.Core.Data; 5 using FinXaccesApi.Repositories;5 using iknow_api.Repositories; 6 6 using iknow_api.Core.Interfaces; 7 7 -
iknow-api/DTOs/UserDTO.cs
r41e4f9f r277bd72 1 namespace FinXaccesApi.DTOs1 namespace iknow_api.DTOs 2 2 { 3 3 public class UserDto -
iknow-api/Program.cs
r41e4f9f r277bd72 1 1 using Microsoft.EntityFrameworkCore; 2 2 using iknow_api.Core.Data; 3 using FinXaccesApi.Services;4 using FinXaccesApi.Repositories;3 using iknow_api.Services; 4 using iknow_api.Repositories; 5 5 6 6 var builder = WebApplication.CreateBuilder(args); -
iknow-api/Repository/Implementations/UserRepository.cs
r41e4f9f r277bd72 5 5 using Microsoft.EntityFrameworkCore; 6 6 7 namespace FinXaccesApi.Repositories7 namespace iknow_api.Repositories 8 8 { 9 9 public class UserRepository : IUserRepository -
iknow-api/Repository/Interface/IUserRepository.cs
r41e4f9f r277bd72 1 1 using iknow_api.Core.Models; 2 namespace FinXaccesApi.Repositories2 namespace iknow_api.Repositories 3 3 { 4 4 public interface IUserRepository -
iknow-api/Services/Implementations/AuthService.cs
r41e4f9f r277bd72 3 3 using System.Text; 4 4 using BCrypt.Net; 5 using FinXaccesApi.Controllers;5 using iknow_api.Controllers; 6 6 using iknow_api.Core.Models; 7 using FinXaccesApi.DTOs;8 using FinXaccesApi.Repositories;7 using iknow_api.DTOs; 8 using iknow_api.Repositories; 9 9 using Microsoft.IdentityModel.Tokens; 10 10 11 namespace FinXaccesApi.Services11 namespace iknow_api.Services 12 12 { 13 13 public class AuthService : IAuthService -
iknow-api/Services/Interfaces/IAuthService.cs
r41e4f9f r277bd72 1 using FinXaccesApi.Controllers; 2 using FinXaccesApi.DTOs; 1 using iknow_api.DTOs; 3 2 4 namespace FinXaccesApi.Services3 namespace iknow_api.Services 5 4 { 6 5 public interface IAuthService
Note:
See TracChangeset
for help on using the changeset viewer.
