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,30 @@
using Indotalent.Infrastructure.Database;
using MediatR;
using Microsoft.EntityFrameworkCore;
namespace Indotalent.Features.Utilities.ProgramResource.Cqrs;
public record DeleteProgramResourceCommand(string Id) : IRequest<bool>;
public class DeleteProgramResourceHandler : IRequestHandler<DeleteProgramResourceCommand, bool>
{
private readonly AppDbContext _context;
public DeleteProgramResourceHandler(AppDbContext context) => _context = context;
public async Task<bool> Handle(DeleteProgramResourceCommand request, CancellationToken cancellationToken)
{
var entity = await _context.ProgramManagerResource
.FirstOrDefaultAsync(x => x.Id == request.Id, cancellationToken);
if (entity == null)
{
return false;
}
_context.ProgramManagerResource.Remove(entity);
await _context.SaveChangesAsync(cancellationToken);
return true;
}
}