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