Generator Changes at 11/14/2025 3:36:13 PM +03:30
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
namespace FrontOffice.BFF.Application.UserCQ.Commands.AcceptContract;
|
||||
public class AcceptContractCommandHandler : IRequestHandler<AcceptContractCommand, Unit>
|
||||
{
|
||||
private readonly IApplicationContractContext _context;
|
||||
|
||||
public AcceptContractCommandHandler(IApplicationContractContext context)
|
||||
{
|
||||
_context = context;
|
||||
}
|
||||
|
||||
public async Task<Unit> Handle(AcceptContractCommand request, CancellationToken cancellationToken)
|
||||
{
|
||||
//TODO: Implement your business logic
|
||||
return new Unit();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user