39 lines
867 B
C#
39 lines
867 B
C#
using Nop.Core.Domain.Common;
|
|
using Nop.Services.Configuration;
|
|
using Nop.Services.ScheduleTasks;
|
|
|
|
namespace Nop.Services.Common;
|
|
|
|
/// <summary>
|
|
/// Represents a task to reset license check
|
|
/// </summary>
|
|
public partial class ResetLicenseCheckTask : IScheduleTask
|
|
{
|
|
#region Fields
|
|
|
|
protected readonly ISettingService _settingService;
|
|
|
|
#endregion
|
|
|
|
#region Ctor
|
|
|
|
public ResetLicenseCheckTask(ISettingService settingService)
|
|
{
|
|
_settingService = settingService;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
/// <summary>
|
|
/// Executes a task
|
|
/// </summary>
|
|
/// <returns>A task that represents the asynchronous operation</returns>
|
|
public async Task ExecuteAsync()
|
|
{
|
|
await _settingService.SetSettingAsync($"{nameof(AdminAreaSettings)}.{nameof(AdminAreaSettings.CheckLicense)}", true);
|
|
}
|
|
|
|
#endregion
|
|
} |