using IStation.Model; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Server { internal class TransferHelper : IJobHelper { private Transfer.TransferHelper _helper = null; public void Start() { if (_helper != null) return; _helper = new Transfer.TransferHelper(); _helper.Start(); } public void Cancel() { if (_helper == null) return; _helper.Cancel(); } } }