initial commit

This commit is contained in:
2026-07-21 14:14:44 +07:00
commit fa7dbb970d
1359 changed files with 104110 additions and 0 deletions
@@ -0,0 +1,38 @@
using Indotalent.Infrastructure.Database;
using MediatR;
using Microsoft.EntityFrameworkCore;
namespace Indotalent.Features.Pipeline.SalesRepresentative.Cqrs;
public class LookupSalesRepresentativeResponse
{
public List<LookupItem> SalesTeams { get; set; } = new();
}
public class LookupItem
{
public string? Id { get; set; }
public string? Name { get; set; }
}
public record LookupSalesRepresentativeQuery() : IRequest<LookupSalesRepresentativeResponse>;
public class LookupSalesRepresentativeHandler : IRequestHandler<LookupSalesRepresentativeQuery, LookupSalesRepresentativeResponse>
{
private readonly AppDbContext _context;
public LookupSalesRepresentativeHandler(AppDbContext context) => _context = context;
public async Task<LookupSalesRepresentativeResponse> Handle(LookupSalesRepresentativeQuery request, CancellationToken cancellationToken)
{
var result = new LookupSalesRepresentativeResponse();
result.SalesTeams = await _context.SalesTeam
.AsNoTracking()
.OrderBy(x => x.Name)
.Select(x => new LookupItem { Id = x.Id, Name = x.Name })
.ToListAsync(cancellationToken);
return result;
}
}