Generator Changes at 11/12/2025 10:14:04 PM +03:30

This commit is contained in:
masoodafar-web
2025-11-12 22:16:08 +03:30
parent f68b9d7a89
commit 2fac0f4922
8 changed files with 95 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
namespace CMSMicroservice.Application.UserCQ.Queries.AdminGetJwtToken;
public record AdminGetJwtTokenQuery : IRequest<AdminGetJwtTokenResponseDto>
{
//نام کاربری
public string Username { get; init; }
//کلمه عبور
public string Password { get; init; }
}

View File

@@ -0,0 +1,16 @@
namespace CMSMicroservice.Application.UserCQ.Queries.AdminGetJwtToken;
public class AdminGetJwtTokenQueryHandler : IRequestHandler<AdminGetJwtTokenQuery, AdminGetJwtTokenResponseDto>
{
private readonly IApplicationDbContext _context;
public AdminGetJwtTokenQueryHandler(IApplicationDbContext context)
{
_context = context;
}
public async Task<AdminGetJwtTokenResponseDto> Handle(AdminGetJwtTokenQuery request, CancellationToken cancellationToken)
{
//TODO: Implement your business logic
return new AdminGetJwtTokenResponseDto();
}
}

View File

@@ -0,0 +1,18 @@
namespace CMSMicroservice.Application.UserCQ.Queries.AdminGetJwtToken;
public class AdminGetJwtTokenQueryValidator : AbstractValidator<AdminGetJwtTokenQuery>
{
public AdminGetJwtTokenQueryValidator()
{
RuleFor(model => model.Username)
.NotEmpty();
RuleFor(model => model.Password)
.NotEmpty();
}
public Func<object, string, Task<IEnumerable<string>>> ValidateValue => async (model, propertyName) =>
{
var result = await ValidateAsync(ValidationContext<AdminGetJwtTokenQuery>.CreateWithOptions((AdminGetJwtTokenQuery)model, x => x.IncludeProperties(propertyName)));
if (result.IsValid)
return Array.Empty<string>();
return result.Errors.Select(e => e.ErrorMessage);
};
}

View File

@@ -0,0 +1,7 @@
namespace CMSMicroservice.Application.UserCQ.Queries.AdminGetJwtToken;
public class AdminGetJwtTokenResponseDto
{
//توکن
public string Token { get; set; }
}