feat: Update Application layer for Hangfire integration

- Add CronSchedule property to CfgProfileDto for scheduling support
- Create ProfileSqlJobDto for SQL job execution data transfer
- Update TriggeringDEXJobBatchCommand to accept ProfileId and Jobs collection
- Make TriggeringDEXJobBatchCommand public for Hangfire job activation
- Update Application DependencyInjection with required service registrations
This commit is contained in:
2026-07-12 00:04:40 +02:00
parent 7efc77ca51
commit 3a1e16a7a0
4 changed files with 61 additions and 54 deletions

View File

@@ -17,7 +17,7 @@ namespace ECMJobRunner.Application.DEXJob.Commands
/// <summary>
/// Profile ID to trigger all associated SQL jobs
/// </summary>
public int ProfileId { get; set; }
public long ProfileId { get; set; }
}
/// <summary>