Son Eklenen Makaleler
Cron Konfigurasyon İşlemi
public static class CronConfigureService
{
public static void AddJobAndTrigger<T>(this IServiceCollectionQuartzConfigurator quartz,
IConfiguration config) where T : IJob {
// Use the name of the IJob as the appsettings.json key
var jobName = typeof(T).Name;
#if DEBUG
jobName = typeof(T).Name+"Debug";
if (string.IsNullOrEmpty(config[$"Quartz:{jobName}"])) jobName = typeof(T).Name;
#endif
var configKey = $"Quartz:{jobName}";
var cronSch...Continue Reading