11 lines
330 B
C#
11 lines
330 B
C#
using AVSCartonShipmentVerifier.DTOs;
|
|
|
|
namespace AVSCartonShipmentVerifier.Services;
|
|
|
|
public interface IScanHistoryStore
|
|
{
|
|
Task AddAsync(ScannedRecordDto record, CancellationToken cancellationToken = default);
|
|
Task<IReadOnlyCollection<ScannedRecordDto>> GetLastFiveAsync(CancellationToken cancellationToken = default);
|
|
}
|
|
|