57 lines
1.5 KiB
C#
57 lines
1.5 KiB
C#
using Application.Common.Services.SecurityManager;
|
|
using FluentValidation;
|
|
using MediatR;
|
|
|
|
namespace Application.Features.SecurityManager.Commands;
|
|
|
|
|
|
|
|
public class UpdateMyProfileResult
|
|
{
|
|
public string? Data { get; init; }
|
|
}
|
|
|
|
public class UpdateMyProfileRequest : IRequest<UpdateMyProfileResult>
|
|
{
|
|
public string? UserId { get; init; }
|
|
public string? FirstName { get; init; }
|
|
public string? LastName { get; init; }
|
|
public string? CompanyName { get; init; }
|
|
}
|
|
|
|
public class UpdateMyProfileValidator : AbstractValidator<UpdateMyProfileRequest>
|
|
{
|
|
public UpdateMyProfileValidator()
|
|
{
|
|
RuleFor(x => x.UserId).NotEmpty();
|
|
RuleFor(x => x.FirstName).NotEmpty();
|
|
RuleFor(x => x.LastName).NotEmpty();
|
|
}
|
|
}
|
|
|
|
public class UpdateMyProfileHandler : IRequestHandler<UpdateMyProfileRequest, UpdateMyProfileResult>
|
|
{
|
|
private readonly ISecurityService _securityService;
|
|
|
|
public UpdateMyProfileHandler(ISecurityService securityService)
|
|
{
|
|
_securityService = securityService;
|
|
}
|
|
|
|
public async Task<UpdateMyProfileResult> Handle(UpdateMyProfileRequest request, CancellationToken cancellationToken)
|
|
{
|
|
await _securityService.UpdateMyProfileAsync(
|
|
request.UserId ?? "",
|
|
request.FirstName ?? "",
|
|
request.LastName ?? "",
|
|
request.CompanyName ?? "",
|
|
cancellationToken
|
|
);
|
|
|
|
return new UpdateMyProfileResult
|
|
{
|
|
Data = "Update MyProfile Success"
|
|
};
|
|
}
|
|
}
|