using WIDESEA_Core.BaseRepository;
|
using WIDESEA_Core.BaseServices;
|
using WIDESEA_Model.Models;
|
|
namespace WIDESEA_IStockService
|
{
|
public interface IStockInfoService : IService<Dt_StockInfo>
|
{
|
IRepository<Dt_StockInfo> Repository { get; }
|
Dt_StockInfo? GetStockByPalletCode(string palletCode);
|
|
void AddMaterielGroup(Dt_StockInfo stockInfo);
|
}
|
}
|