16 lines
392 B
C#
16 lines
392 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Domain.Impl
|
|
{
|
|
public interface IProductDomain : ITransientDependency
|
|
{
|
|
Task<List<WxSzzyProduct>> GetProductList();
|
|
|
|
Task<List<WX_SZZYSUBPRODUCT>> GetSubProductListByProductId(int productId, int isValid, int? midprocutid);
|
|
}
|
|
}
|