Some checks failed
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Failing after 15m47s
8 lines
155 B
C#
8 lines
155 B
C#
using Domain.Dtos.Stock;
|
|
|
|
public interface IStockScanService
|
|
{
|
|
Task<StockItemSelectionDto?> ParseAndMatchAsync(string rawInput, int locationId);
|
|
}
|
|
|