15 lines
452 B
C#
15 lines
452 B
C#
![]() |
using Seyounth.Hyosung.Data.Models;
|
||
|
using Seyounth.Hyosung.Data.Services.Hyosung.Entities;
|
||
|
|
||
|
namespace Seyounth.Hyosung.Data.Services.Hyosung;
|
||
|
|
||
|
public interface IHyosungWmsService
|
||
|
{
|
||
|
Task<int> GetControlNo(Variety variety, string grade);
|
||
|
|
||
|
Task<MST_ITEM_2240_V> GetItemInfoByItemCode(string itemCode);
|
||
|
|
||
|
Task UpdateControlNo(Variety variety, int controlNo);
|
||
|
|
||
|
Task<LabelResult> GetLabelResult(string itemCode,string lot,int controlNo);
|
||
|
}
|