Interface ICleaningProcessRepository
Access to the CleaningProcess
Namespace: Simplic.Logistics.Cleaning
Assembly: Simplic.Logistics.Cleaning.dll
Syntax
public interface ICleaningProcessRepository
Methods
| Improve this Doc View SourceGetByPreOrderId(Guid)
Declaration
CleaningProcess GetByPreOrderId(Guid preOrderId)
Parameters
Type | Name | Description |
---|---|---|
System.Guid | preOrderId |
Returns
Type | Description |
---|---|
CleaningProcess |
GetCleaningProgramList()
Gets a list of available cleaning programs
Declaration
IList<CleaningProcessProgram> GetCleaningProgramList()
Returns
Type | Description |
---|---|
System.Collections.Generic.IList<CleaningProcessProgram> |
LockProcess(Guid)
Try to lock a process. Throws an LockProcessFailed if the process could not be locked.
Declaration
void LockProcess(Guid id)
Parameters
Type | Name | Description |
---|---|---|
System.Guid | id | Unique process id |
ReleaseProcessLock(Guid)
Release a process lock
Declaration
void ReleaseProcessLock(Guid id)
Parameters
Type | Name | Description |
---|---|---|
System.Guid | id | process lock id |