65 lines
2.3 KiB
C#
65 lines
2.3 KiB
C#
using Indotalent.Infrastructure.Database;
|
|
using MediatR;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Indotalent.Features.Organization.Branch.Cqrs;
|
|
|
|
public class GetBranchByIdResponse
|
|
{
|
|
public string? Id { get; set; }
|
|
public string? AutoNumber { get; set; }
|
|
public string? Code { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? Description { get; set; }
|
|
public string? StreetAddress { get; set; }
|
|
public string? City { get; set; }
|
|
public string? StateProvince { get; set; }
|
|
public string? ZipCode { get; set; }
|
|
public string? Phone { get; set; }
|
|
public string? Email { get; set; }
|
|
public string? OtherInformation1 { get; set; }
|
|
public string? OtherInformation2 { get; set; }
|
|
public string? OtherInformation3 { get; set; }
|
|
public DateTimeOffset? CreatedAt { get; set; }
|
|
public string? CreatedBy { get; set; }
|
|
public DateTimeOffset? UpdatedAt { get; set; }
|
|
public string? UpdatedBy { get; set; }
|
|
}
|
|
|
|
public record GetBranchByIdQuery(string Id) : IRequest<GetBranchByIdResponse?>;
|
|
|
|
public class GetBranchByIdHandler : IRequestHandler<GetBranchByIdQuery, GetBranchByIdResponse?>
|
|
{
|
|
private readonly AppDbContext _context;
|
|
|
|
public GetBranchByIdHandler(AppDbContext context) => _context = context;
|
|
|
|
public async Task<GetBranchByIdResponse?> Handle(GetBranchByIdQuery request, CancellationToken cancellationToken)
|
|
{
|
|
return await _context.Branch
|
|
.AsNoTracking()
|
|
.Where(x => x.Id == request.Id)
|
|
.Select(x => new GetBranchByIdResponse
|
|
{
|
|
Id = x.Id,
|
|
AutoNumber = x.AutoNumber,
|
|
Code = x.Code,
|
|
Name = x.Name,
|
|
Description = x.Description,
|
|
StreetAddress = x.StreetAddress,
|
|
City = x.City,
|
|
StateProvince = x.StateProvince,
|
|
ZipCode = x.ZipCode,
|
|
Phone = x.Phone,
|
|
Email = x.Email,
|
|
OtherInformation1 = x.OtherInformation1,
|
|
OtherInformation2 = x.OtherInformation2,
|
|
OtherInformation3 = x.OtherInformation3,
|
|
CreatedAt = x.CreatedAt,
|
|
CreatedBy = x.CreatedBy,
|
|
UpdatedAt = x.UpdatedAt,
|
|
UpdatedBy = x.UpdatedBy
|
|
})
|
|
.FirstOrDefaultAsync(cancellationToken);
|
|
}
|
|
} |