Some checks failed
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Failing after 15m47s
12 lines
357 B
C#
12 lines
357 B
C#
using Domain.Dtos.Stock;
|
|
using Domain.Generics;
|
|
|
|
namespace Core.Interfaces.Stock
|
|
{
|
|
public interface ILSStockScanDom
|
|
{
|
|
Task<PagedResult<StockItemScanResultDto>> SearchAsync(StockItemSearchParams p);
|
|
Task<PagedResult<StockItemScanResultDto>> SearchParsedAsync(StockItemParsedSearchParams p, CancellationToken ct = default);
|
|
|
|
}
|
|
} |