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();

    }
}