26 lines
654 B
C#
26 lines
654 B
C#
using MDM.Models.Flow;
|
|
using MDM.Models.Session;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MDM.Services.Session.IService
|
|
{
|
|
public interface ISessionManagerService
|
|
{
|
|
|
|
public int StartWorkApply(string ProcessCode, string WorkOrder);
|
|
|
|
InStationApplyResult InStationApply(string OperationCode, string ProcessCode);
|
|
OutStationApplyResult OutStationApply(string OperationCode, string ProcessCode);
|
|
|
|
|
|
int FinishWorkApply(string ProcessCode, string WorkOrder);
|
|
int ReWorkApply(string ProcessCode, string WorkOrder);
|
|
|
|
|
|
}
|
|
}
|