using JiepeiWMS.IServices.BASE;
|
using JiepeiWMS.Model.Models;
|
using System.Threading.Tasks;
|
|
namespace JiepeiWMS.IServices
|
{
|
/// <summary>
|
/// IWMSupplierServices
|
/// </summary>
|
public interface IWMSupplierServices :IBaseServices<WMSupplier>
|
{
|
/// <summary>
|
/// 供应商添加
|
/// </summary>
|
/// <param name="Model">模型</param>
|
/// <param name="UserId">当前操作人id</param>
|
/// <returns></returns>
|
Task<string> AddSupplierInfo(WMSupplier Model, int UserId);
|
|
/// <summary>
|
/// 更新供应商OASupplierId
|
/// </summary>
|
/// <param name="Model">模型</param>
|
/// <param name="UserId">操作人id</param>
|
/// <returns></returns>
|
Task<string> EditSupplierInfo();
|
|
}
|
}
|