15 lines
331 B
C#
15 lines
331 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WMS.Web.Domain.Entitys;
|
|
|
|
namespace WMS.Web.Domain.Infrastructure
|
|
{
|
|
public interface IOutStockTaskRepositories
|
|
{
|
|
// 新增
|
|
Task<OutStockTask> Add(OutStockTask entity, bool isTransaction = true);
|
|
}
|
|
}
|