autobus-api_old/AutobusApi.Application/Employees/Commands/CreateEmployee/CreateEmployeeCommandHandler.cs

56 lines
1.7 KiB
C#

using AutobusApi.Application.Common.Interfaces;
using AutobusApi.Domain.Entities;
using AutobusApi.Domain.Enums;
using MediatR;
namespace AutobusApi.Application.Employees.Commands.CreateEmployee;
public class CreateEmployeeCommandHandler : IRequestHandler<CreateEmployeeCommand, int>
{
private readonly IApplicationDbContext _dbContext;
private readonly IIdentityService _identityService;
public CreateEmployeeCommandHandler(
IApplicationDbContext dbContext,
IIdentityService identityService)
{
_dbContext = dbContext;
_identityService = identityService;
}
public async Task<int> Handle(
CreateEmployeeCommand request,
CancellationToken cancellationToken)
{
var employee = new Employee();
employee.EmployerCompanyId = request.CompanyId;
employee.FirstName = request.FirstName;
employee.LastName = request.LastName;
employee.Patronymic = request.Patronymic;
employee.Sex = Enum.Parse<Sex>(request.Sex);
employee.BirthDate = request.BirthDate;
var userId = await _identityService.RegisterAsync(request.Email, request.Password, cancellationToken);
employee.IdentityId = userId;
employee.Documents = new List<EmployeeDocument>();
foreach (var document in request.Documents)
{
employee.Documents.Add(new EmployeeDocument()
{
Type = Enum.Parse<EmployeeDocumentType>(document.Type),
Information = document.Information
});
}
_dbContext.Employees.Add(employee);
await _dbContext.SaveChangesAsync(cancellationToken);
return employee.Id;
}
}