41 lines
907 B
C#
41 lines
907 B
C#
using Nop.Services.ScheduleTasks;
|
|
|
|
namespace Nop.Plugin.Misc.Zettle.Services;
|
|
|
|
/// <summary>
|
|
/// Represents a schedule task to synchronize products
|
|
/// </summary>
|
|
public class ZettleSyncTask : IScheduleTask
|
|
{
|
|
#region Fields
|
|
|
|
protected readonly ZettleService _zettleService;
|
|
protected readonly ZettleSettings _zettleSettings;
|
|
|
|
#endregion
|
|
|
|
#region Ctor
|
|
|
|
public ZettleSyncTask(ZettleService zettleService,
|
|
ZettleSettings zettleSettings)
|
|
{
|
|
_zettleService = zettleService;
|
|
_zettleSettings = zettleSettings;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
/// <summary>
|
|
/// Execute task
|
|
/// </summary>
|
|
/// <returns>A task that represents the asynchronous operation</returns>
|
|
public async Task ExecuteAsync()
|
|
{
|
|
if (ZettleService.IsConfigured(_zettleSettings))
|
|
await _zettleService.ImportAsync();
|
|
}
|
|
|
|
#endregion
|
|
} |