Interface ITransportRequirementRepository
Namespace: Simplic.Logistics.Cleaning
Assembly: Simplic.Logistics.Cleaning.dll
Syntax
public interface ITransportRequirementRepository
Methods
| Improve this Doc View SourceDelete(TransportRequirement)
Deletes a TransportRequirement
Declaration
void Delete(TransportRequirement transportRequirement)
Parameters
Type | Name | Description |
---|---|---|
TransportRequirement | transportRequirement | The TransportRequirement to delete |
Get(Guid)
Gets the TransportRequirement by the Guid
Declaration
TransportRequirement Get(Guid guid)
Parameters
Type | Name | Description |
---|---|---|
System.Guid | guid | The Guid of a TransportRequirement |
Returns
Type | Description |
---|---|
TransportRequirement | Returns a new instance of TransportRequirement |
GetAll()
Gets all TransportRequirements
Declaration
IEnumerable<TransportRequirement> GetAll()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<TransportRequirement> | Returns a enumerable of all TransportRequirements |
Save(TransportRequirement)
Saves a TransportRequirement
Declaration
void Save(TransportRequirement transportRequirement)
Parameters
Type | Name | Description |
---|---|---|
TransportRequirement | transportRequirement | The TransportRequirement to save |