using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using MECF.Framework.Common.Jobs; namespace VirgoRT.Modules.Schedulers { public interface ISchedulerDBCallback { void LotCreated(ControlJobInfo cj); void LotFinished(ControlJobInfo cj); } }