using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.Integration.Operation; namespace Tango.PPC.Common.Resume { public interface IJobResumeManager { event EventHandler JobResumeUpdated; event EventHandler JobResumeDropped; void DropResume(String jobGuid); JobResumeModel GetJobResumeModel(String jobGuid); } }