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.
29 lines
920 B
29 lines
920 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.ServiceModel;
|
|
using System.Data;
|
|
using SiaSun.LMS.Model;
|
|
|
|
namespace SiaSun.LMS.Interface
|
|
{
|
|
[ServiceContract()]
|
|
[ServiceKnownType(typeof(SiaSun.LMS.Model.SYS_USER))]
|
|
[ServiceKnownType(typeof(SiaSun.LMS.Model.MANAGE_LIST))]
|
|
[ServiceKnownType(typeof(SiaSun.LMS.Model.MANAGE_MAIN))]
|
|
[ServiceKnownType(typeof(List<MANAGE_LIST>))]
|
|
[ServiceKnownType(typeof(List<PLAN_LIST>))]
|
|
|
|
public partial interface I_ManageService
|
|
{
|
|
[OperationContract]
|
|
IList<SiaSun.LMS.Model.MANAGE_TYPE_PARAM> ManageTypeParamGetList(int MANAGE_TYPE_ID);
|
|
|
|
[OperationContract]
|
|
bool ManageInAndroid(MANAGE_MAIN mm, List<MANAGE_LIST> lManageList, out string sResult);
|
|
|
|
[OperationContract]
|
|
bool ManageOutAndroid(MANAGE_MAIN mm, List<MANAGE_LIST> lManageList, out string sResult);
|
|
|
|
}
|
|
}
|