16 lines
425 B
C#
16 lines
425 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Yi.Framework.DtoModel.ERP.Supplier;
|
|
using Yi.Framework.Interface.Base.Crud;
|
|
|
|
namespace Yi.Framework.Interface.ERP
|
|
{
|
|
public interface ISupplierService : ICrudAppService<SupplierGetListOutput, long, SupplierCreateUpdateInput>
|
|
{
|
|
Task<List<SupplierGetListOutput>> GetListAsync();
|
|
}
|
|
}
|