You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
590 B
26 lines
590 B
11 months ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
using System.Data;
|
||
|
using System.ServiceModel;
|
||
|
|
||
|
using SiaSun.LMS.Model;
|
||
|
|
||
|
namespace SiaSun.LMS.Interface
|
||
|
{
|
||
|
[ServiceContract]
|
||
|
[ServiceKnownType(typeof(object))]
|
||
|
public partial interface I_ControlService
|
||
|
{
|
||
|
[OperationContract]
|
||
|
void ControlApplyThread(SiaSun.LMS.Model.IO_CONTROL_APPLY mIO_CONTROL_APPLY);
|
||
|
|
||
|
[OperationContract]
|
||
|
void ControlTaskChangeThread(Msg_Control_Task_Change msg);
|
||
|
|
||
|
[OperationContract]
|
||
|
IList<SiaSun.LMS.Model.IO_CONTROL> GetList();
|
||
|
|
||
|
}
|
||
|
}
|