Interface ICleaningProcedureRepository
Interface for ClenaingProcedure DB functions
Namespace: Simplic.Logistics.Cleaning
Assembly: Simplic.Logistics.Cleaning.dll
Syntax
public interface ICleaningProcedureRepository
Methods
| Improve this Doc View SourceDelete(CleaningProcedure)
Deletes a CleaningProcedure
Declaration
void Delete(CleaningProcedure cleaningProcedure)
Parameters
Type | Name | Description |
---|---|---|
CleaningProcedure | cleaningProcedure | The CleaningProcedur to save |
Get(Guid)
Gets a CleaningProcedure by its Id
Declaration
CleaningProcedure Get(Guid guid)
Parameters
Type | Name | Description |
---|---|---|
System.Guid | guid | The guid of a CleaningProcedure |
Returns
Type | Description |
---|---|
CleaningProcedure | A new Instance of CleaningProcedure |
GetAll()
Gets all CleaningProcedures
Declaration
IEnumerable<CleaningProcedure> GetAll()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<CleaningProcedure> | A enumerable of CleaningProcedures |
Save(CleaningProcedure)
Saves a ClenaigProcedure
Declaration
void Save(CleaningProcedure cleaningProcedure)
Parameters
Type | Name | Description |
---|---|---|
CleaningProcedure | cleaningProcedure | The CleaningProcedure to save |