Changeset e294f7d for ChapterX.Infrastructure/DependencyInjection.cs
- Timestamp:
- 03/19/26 20:55:06 (4 months ago)
- Branches:
- main
- Children:
- b62cefc
- Parents:
- 877c13c
- File:
-
- 1 edited
-
ChapterX.Infrastructure/DependencyInjection.cs (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ChapterX.Infrastructure/DependencyInjection.cs
r877c13c re294f7d 1 1 using ChapterX.Application.Abstractions; 2 using ChapterX.Application.Auth; 2 3 using ChapterX.Domain.Repositories; 3 4 using ChapterX.Infrastructure.Data.DataContext; 4 5 using ChapterX.Infrastructure.Repositories; 6 using ChapterX.Infrastructure.Services; 5 7 using Microsoft.EntityFrameworkCore; 6 8 using Microsoft.Extensions.Configuration; … … 17 19 18 20 services.AddScoped<IApplicationDbContext>(sp => sp.GetRequiredService<ApplicationDbContext>()); 21 services.AddScoped<IJwtTokenService, JwtTokenService>(); 19 22 20 23 services.AddScoped<IUserRepository, UserRepository>();
Note:
See TracChangeset
for help on using the changeset viewer.
