public async Task HandleAsync(DeleteAthleteProduct command)
 {
     await _athleteProductService.DeleteAsync(command.UserId, command.ProductId, command.AthleteProductId);
 }