ldj/WcfService1/IScheduledService.cs

50 lines
1.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.Text;
using DeiNiu.Utils;
namespace DeiNiu.Wcf
{
// 注意: 使用“重构”菜单上的“重命名”命令可以同时更改代码和配置文件中的接口名“IScheduledService”。
[ServiceContract]
public interface IScheduledService
{
[OperationContract]
void syncInRequest();
// [OperationContract]
// void syncOutRequest();
// [OperationContract]
// void preProcessOutOrders();
[OperationContract]
void syncGoods();
[OperationContract]
int syncNewOwners();
[OperationContract]
int syncCustomer();
// [OperationContract]
// void createPDAPickTasks();
// [OperationContract]
// void syncAndCreatePickRequest(enumOutStockRequestStatus status);
// [OperationContract]
// bool createPickWaves();
[OperationContract]
int[] getJobInterVal();
[OperationContract]
void truncateDataForTestOnly();
[OperationContract]
int getWaveInterval();
[OperationContract]
string processOut(enumOutStockRequestStatus status);
[OperationContract]
string noticeErp();
}
}