using Quadarax.Foundation.Core.Logging; using Quadarax.Foundation.Core.Thread; namespace BO.ProcessServer.Business.Workers { public class RetentionWorker : LoopWorker { private const string CS_WK_NAME = "Retention"; public RetentionWorker(IWorkerContext context) : base(CS_WK_NAME, context) { } public RetentionWorker(string workerName, IWorkerContext context) : base(workerName, context) { } public RetentionWorker(string workerName) : base(workerName) { } public RetentionWorker(string workerName, IWorkerContext context, ILogger logger = null) : base(workerName, context, logger) { } } }