initial commit

This commit is contained in:
2026-07-21 13:38:38 +07:00
commit 5047288f04
777 changed files with 57255 additions and 0 deletions
@@ -0,0 +1,34 @@
using Indotalent.Infrastructure.Database;
using MediatR;
using Microsoft.EntityFrameworkCore;
namespace Indotalent.Features.Utilities.BookingGroup.Cqrs;
public class DeleteBookingGroupByIdRequest
{
public DeleteBookingGroupByIdRequest(string id) => Id = id;
public string Id { get; set; }
}
public record DeleteBookingGroupByIdCommand(DeleteBookingGroupByIdRequest Data) : IRequest<bool>;
public class DeleteBookingGroupByIdHandler : IRequestHandler<DeleteBookingGroupByIdCommand, bool>
{
private readonly AppDbContext _context;
public DeleteBookingGroupByIdHandler(AppDbContext context) => _context = context;
public async Task<bool> Handle(DeleteBookingGroupByIdCommand request, CancellationToken cancellationToken)
{
var entity = await _context.BookingGroup
.FirstOrDefaultAsync(x => x.Id == request.Data.Id, cancellationToken);
if (entity == null)
{
return false;
}
_context.BookingGroup.Remove(entity);
return await _context.SaveChangesAsync(cancellationToken) > 0;
}
}