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,102 @@
using Application.Common.CQS.Queries;
using Application.Common.Extensions;
using AutoMapper;
using Domain.Entities;
using MediatR;
using Microsoft.EntityFrameworkCore;
namespace Application.Features.CustomerManager.Queries;
public record GetCustomerListDto
{
public string? Id { get; init; }
public string? Name { get; set; }
public string? Number { get; set; }
public string? Description { get; set; }
public string? Street { get; set; }
public string? City { get; set; }
public string? State { get; set; }
public string? ZipCode { get; set; }
public string? Country { get; set; }
public string? PhoneNumber { get; set; }
public string? FaxNumber { get; set; }
public string? EmailAddress { get; set; }
public string? Website { get; set; }
public string? WhatsApp { get; set; }
public string? LinkedIn { get; set; }
public string? Facebook { get; set; }
public string? Instagram { get; set; }
public string? TwitterX { get; set; }
public string? TikTok { get; set; }
public string? CustomerGroupId { get; set; }
public string? CustomerGroupName { get; set; }
public string? CustomerCategoryId { get; set; }
public string? CustomerCategoryName { get; set; }
public string? CreatedById { get; init; }
public DateTime? CreatedAtUtc { get; init; }
}
public class GetCustomerListProfile : Profile
{
public GetCustomerListProfile()
{
CreateMap<Customer, GetCustomerListDto>()
.ForMember(
dest => dest.CustomerGroupName,
opt => opt.MapFrom(src => src.CustomerGroup != null ? src.CustomerGroup.Name : string.Empty)
)
.ForMember(
dest => dest.CustomerCategoryName,
opt => opt.MapFrom(src => src.CustomerCategory != null ? src.CustomerCategory.Name : string.Empty)
);
}
}
public class GetCustomerListResult
{
public List<GetCustomerListDto>? Data { get; init; }
}
public class GetCustomerListRequest : IRequest<GetCustomerListResult>
{
public bool IsDeleted { get; init; } = false;
}
public class GetCustomerListHandler : IRequestHandler<GetCustomerListRequest, GetCustomerListResult>
{
private readonly IMapper _mapper;
private readonly IQueryContext _context;
public GetCustomerListHandler(IMapper mapper, IQueryContext context)
{
_mapper = mapper;
_context = context;
}
public async Task<GetCustomerListResult> Handle(GetCustomerListRequest request, CancellationToken cancellationToken)
{
var query = _context
.Customer
.AsNoTracking()
.IsDeletedEqualTo(request.IsDeleted)
.Include(x => x.CustomerGroup)
.Include(x => x.CustomerCategory)
.AsQueryable();
var entities = await query.ToListAsync(cancellationToken);
var dtos = _mapper.Map<List<GetCustomerListDto>>(entities);
return new GetCustomerListResult
{
Data = dtos
};
}
}