19 lines
492 B
C#
19 lines
492 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WCS.Model.ApiModel.Stocktaking;
|
|
using WCS.Model;
|
|
using WCS.Model.ApiModel.SelfCheck;
|
|
|
|
namespace WCS.BLL.Services.IService
|
|
{
|
|
public interface ISelfCheckService
|
|
{
|
|
public Task<ResponseBase> StartSelfCheckByShelfCode(StartSelfCheckByShelfCodeRequest request);
|
|
|
|
public Task<ResponseBase> StartSelfCheckByGroupName(List<string> GroupNames);
|
|
}
|
|
}
|