blob: 002563fc4fec3e256e9ff8c10d8e9a278c7ed7e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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<JobResumeUpdatedEventArgs> JobResumeUpdated;
event EventHandler<JobResumeDroppedEventArgs> JobResumeDropped;
void DropResume(String jobGuid);
JobResumeModel GetJobResumeModel(String jobGuid);
}
}
|