initial commit

This commit is contained in:
2026-07-21 15:36:49 +07:00
commit 77f66132bc
2640 changed files with 850901 additions and 0 deletions
@@ -0,0 +1,58 @@
using Application.Common.Repositories;
using Domain.Entities;
using FluentValidation;
using MediatR;
namespace Application.Features.CustomerGroupManager.Commands;
public class CreateCustomerGroupResult
{
public CustomerGroup? Data { get; set; }
}
public class CreateCustomerGroupRequest : IRequest<CreateCustomerGroupResult>
{
public string? Name { get; init; }
public string? Description { get; init; }
public string? CreatedById { get; init; }
}
public class CreateCustomerGroupValidator : AbstractValidator<CreateCustomerGroupRequest>
{
public CreateCustomerGroupValidator()
{
RuleFor(x => x.Name).NotEmpty();
}
}
public class CreateCustomerGroupHandler : IRequestHandler<CreateCustomerGroupRequest, CreateCustomerGroupResult>
{
private readonly ICommandRepository<CustomerGroup> _repository;
private readonly IUnitOfWork _unitOfWork;
public CreateCustomerGroupHandler(
ICommandRepository<CustomerGroup> repository,
IUnitOfWork unitOfWork
)
{
_repository = repository;
_unitOfWork = unitOfWork;
}
public async Task<CreateCustomerGroupResult> Handle(CreateCustomerGroupRequest request, CancellationToken cancellationToken = default)
{
var entity = new CustomerGroup();
entity.CreatedById = request.CreatedById;
entity.Name = request.Name;
entity.Description = request.Description;
await _repository.CreateAsync(entity, cancellationToken);
await _unitOfWork.SaveAsync(cancellationToken);
return new CreateCustomerGroupResult
{
Data = entity
};
}
}
@@ -0,0 +1,62 @@
using Application.Common.Repositories;
using Domain.Entities;
using FluentValidation;
using MediatR;
namespace Application.Features.CustomerGroupManager.Commands;
public class DeleteCustomerGroupResult
{
public CustomerGroup? Data { get; set; }
}
public class DeleteCustomerGroupRequest : IRequest<DeleteCustomerGroupResult>
{
public string? Id { get; init; }
public string? DeletedById { get; init; }
}
public class DeleteCustomerGroupValidator : AbstractValidator<DeleteCustomerGroupRequest>
{
public DeleteCustomerGroupValidator()
{
RuleFor(x => x.Id).NotEmpty();
}
}
public class DeleteCustomerGroupHandler : IRequestHandler<DeleteCustomerGroupRequest, DeleteCustomerGroupResult>
{
private readonly ICommandRepository<CustomerGroup> _repository;
private readonly IUnitOfWork _unitOfWork;
public DeleteCustomerGroupHandler(
ICommandRepository<CustomerGroup> repository,
IUnitOfWork unitOfWork
)
{
_repository = repository;
_unitOfWork = unitOfWork;
}
public async Task<DeleteCustomerGroupResult> Handle(DeleteCustomerGroupRequest request, CancellationToken cancellationToken)
{
var entity = await _repository.GetAsync(request.Id ?? string.Empty, cancellationToken);
if (entity == null)
{
throw new Exception($"Entity not found: {request.Id}");
}
entity.UpdatedById = request.DeletedById;
_repository.Delete(entity);
await _unitOfWork.SaveAsync(cancellationToken);
return new DeleteCustomerGroupResult
{
Data = entity
};
}
}
@@ -0,0 +1,68 @@
using Application.Common.Repositories;
using Domain.Entities;
using FluentValidation;
using MediatR;
namespace Application.Features.CustomerGroupManager.Commands;
public class UpdateCustomerGroupResult
{
public CustomerGroup? Data { get; set; }
}
public class UpdateCustomerGroupRequest : IRequest<UpdateCustomerGroupResult>
{
public string? Id { get; init; }
public string? Name { get; init; }
public string? Description { get; init; }
public string? UpdatedById { get; init; }
}
public class UpdateCustomerGroupValidator : AbstractValidator<UpdateCustomerGroupRequest>
{
public UpdateCustomerGroupValidator()
{
RuleFor(x => x.Id).NotEmpty();
RuleFor(x => x.Name).NotEmpty();
}
}
public class UpdateCustomerGroupHandler : IRequestHandler<UpdateCustomerGroupRequest, UpdateCustomerGroupResult>
{
private readonly ICommandRepository<CustomerGroup> _repository;
private readonly IUnitOfWork _unitOfWork;
public UpdateCustomerGroupHandler(
ICommandRepository<CustomerGroup> repository,
IUnitOfWork unitOfWork
)
{
_repository = repository;
_unitOfWork = unitOfWork;
}
public async Task<UpdateCustomerGroupResult> Handle(UpdateCustomerGroupRequest request, CancellationToken cancellationToken)
{
var entity = await _repository.GetAsync(request.Id ?? string.Empty, cancellationToken);
if (entity == null)
{
throw new Exception($"Entity not found: {request.Id}");
}
entity.UpdatedById = request.UpdatedById;
entity.Name = request.Name;
entity.Description = request.Description;
_repository.Update(entity);
await _unitOfWork.SaveAsync(cancellationToken);
return new UpdateCustomerGroupResult
{
Data = entity
};
}
}
@@ -0,0 +1,70 @@
using Application.Common.CQS.Queries;
using Application.Common.Extensions;
using AutoMapper;
using Domain.Entities;
using MediatR;
using Microsoft.EntityFrameworkCore;
namespace Application.Features.CustomerGroupManager.Queries;
public record GetCustomerGroupListDto
{
public string? Id { get; init; }
public string? Name { get; init; }
public string? Description { get; init; }
public DateTime? CreatedAtUtc { get; init; }
}
public class GetCustomerGroupListProfile : Profile
{
public GetCustomerGroupListProfile()
{
CreateMap<CustomerGroup, GetCustomerGroupListDto>();
}
}
public class GetCustomerGroupListResult
{
public List<GetCustomerGroupListDto>? Data { get; init; }
}
public class GetCustomerGroupListRequest : IRequest<GetCustomerGroupListResult>
{
public bool IsDeleted { get; init; } = false;
}
public class GetCustomerGroupListHandler : IRequestHandler<GetCustomerGroupListRequest, GetCustomerGroupListResult>
{
private readonly IMapper _mapper;
private readonly IQueryContext _context;
public GetCustomerGroupListHandler(IMapper mapper, IQueryContext context)
{
_mapper = mapper;
_context = context;
}
public async Task<GetCustomerGroupListResult> Handle(GetCustomerGroupListRequest request, CancellationToken cancellationToken)
{
var query = _context
.CustomerGroup
.AsNoTracking()
.IsDeletedEqualTo(request.IsDeleted)
.AsQueryable();
var entities = await query.ToListAsync(cancellationToken);
var dtos = _mapper.Map<List<GetCustomerGroupListDto>>(entities);
return new GetCustomerGroupListResult
{
Data = dtos
};
}
}