using JiepeiWMS.IServices.BASE;
|
using JiepeiWMS.Model.Models;
|
using System.Collections.Generic;
|
using System.Threading.Tasks;
|
|
namespace JiepeiWMS.IServices
|
{
|
/// <summary>
|
/// IWMProductClassServices
|
/// </summary>
|
public interface IWMProductClassServices : IBaseServices<WMProductClass>
|
{
|
Task<List<WMProductClass>> GetParentIdList(int Id);
|
|
Task<List<WMProductClass>> GetClassCodeList(string code, int level);
|
}
|
}
|