* Added Lot table and service
* Changed behaviour of scanning to scan first PartNumber, select specific record and then scan MeylePartNumber
This commit is contained in:
10
SytelineSaAppEfDataModel/Services/ILotService.cs
Normal file
10
SytelineSaAppEfDataModel/Services/ILotService.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using SytelineSaAppEfDataModel.Dtos;
|
||||
|
||||
namespace SytelineSaAppEfDataModel.Services;
|
||||
|
||||
public interface ILotService
|
||||
{
|
||||
Task<IEnumerable<LotDto>> GetAll();
|
||||
Task<LotDto?> GetByItemNumber(string itemNumber);
|
||||
Task<LotDto?> GetByLotNumber(string lotNumber);
|
||||
}
|
||||
Reference in New Issue
Block a user