Files
tnb.server/WarehouseMgr/Tnb.WarehouseMgr.Interfaces/IOtherOutstockHService.cs

16 lines
374 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
using Tnb.WarehouseMgr.Entities.Dto.Inputs;
namespace Tnb.WarehouseMgr.Interfaces
{
public interface IOtherOutstockHService
{
Task<bool> AddDetail(OtherOutstockAddDetailInput input, ISqlSugarClient dbConn = null);
}
}