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