21 lines
461 B
C#
21 lines
461 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
|
|
{
|
|
|
|
int StartWorkApply(string ProcessCode, string WorkOrder, string LineCode, string GroupCode);
|
|
|
|
InStationApplyResult InStationApply(string OperationCode, string ProcessCode);
|
|
|
|
|
|
}
|
|
}
|