Files
blazor-oms/Features/Inventory/Warehouse/Cqrs/GetWarehouseListHandler.cs
T
2026-07-21 13:38:38 +07:00

45 lines
1.5 KiB
C#

using Indotalent.Infrastructure.Database;
using MediatR;
using Microsoft.EntityFrameworkCore;
namespace Indotalent.Features.Inventory.Warehouse.Cqrs;
public class GetWarehouseListResponse
{
public string? Id { get; set; }
public string? Name { get; set; }
public string? Description { get; set; }
public bool? SystemWarehouse { get; set; }
public DateTimeOffset? CreatedAt { get; set; }
public string? CreatedBy { get; set; }
public DateTimeOffset? UpdatedAt { get; set; }
public string? UpdatedBy { get; set; }
}
public record GetWarehouseListQuery() : IRequest<List<GetWarehouseListResponse>>;
public class GetWarehouseListHandler : IRequestHandler<GetWarehouseListQuery, List<GetWarehouseListResponse>>
{
private readonly AppDbContext _context;
public GetWarehouseListHandler(AppDbContext context) => _context = context;
public async Task<List<GetWarehouseListResponse>> Handle(GetWarehouseListQuery request, CancellationToken cancellationToken)
{
return await _context.Warehouse
.AsNoTracking()
.OrderBy(x => x.Name)
.Select(x => new GetWarehouseListResponse
{
Id = x.Id,
Name = x.Name,
Description = x.Description,
SystemWarehouse = x.SystemWarehouse,
CreatedAt = x.CreatedAt,
CreatedBy = x.CreatedBy,
UpdatedAt = x.UpdatedAt,
UpdatedBy = x.UpdatedBy,
})
.ToListAsync(cancellationToken);
}
}