Interface ICleaningProcedureEntryRepository
Interface for all ClenaingProcedureEntrys
Namespace: Simplic.Logistics.Cleaning
Assembly: Simplic.Logistics.Cleaning.dll
Syntax
public interface ICleaningProcedureEntryRepository
Methods
| Improve this Doc View SourceDelete(CleaningProcedureEntry)
Deletes a cleaningProcedureEntery
Declaration
void Delete(CleaningProcedureEntry cleaningProcedureEntry)
Parameters
Type | Name | Description |
---|---|---|
CleaningProcedureEntry | cleaningProcedureEntry | The CleaningProcedureEntry to delete |
Get(Guid)
Gets a CleaningProcedureEntry
Declaration
CleaningProcedureEntry Get(Guid guid)
Parameters
Type | Name | Description |
---|---|---|
System.Guid | guid | The Guid of a CleaningProcedureEnty |
Returns
Type | Description |
---|---|
CleaningProcedureEntry | Returns a new Instance of a CleaningProcedureEntry |
GetAll()
Gets all CleaningProcessEntrys
Declaration
IEnumerable<CleaningProcedureEntry> GetAll()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<CleaningProcedureEntry> | Returns an enumerable of all CleaningProcedurEntrys |
GetAllForProcedure(Guid)
Gets all CleaingProcedurEntrys for one CleaningProcedur
Declaration
IEnumerable<CleaningProcedureEntry> GetAllForProcedure(Guid procedureId)
Parameters
Type | Name | Description |
---|---|---|
System.Guid | procedureId |
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<CleaningProcedureEntry> | Returns an enumerable of all CleaningProcedureEntrys for one CleaningProcedur |
Save(CleaningProcedureEntry)
Saves a CleaningProcedureEntry
Declaration
void Save(CleaningProcedureEntry cleaningProcedureEntry)
Parameters
Type | Name | Description |
---|---|---|
CleaningProcedureEntry | cleaningProcedureEntry |