Interface IPreProductRepository
Namespace: Simplic.Logistics.Cleaning
Assembly: Simplic.Logistics.Cleaning.dll
Syntax
public interface IPreProductRepository
Methods
| Improve this Doc View SourceDelete(PreProduct)
Deletes a PreProduct
Declaration
void Delete(PreProduct preProduct)
Parameters
Type | Name | Description |
---|---|---|
PreProduct | preProduct | The PreProduct to delete |
Get(Guid)
Gets the PreProduct by the Guid
Declaration
PreProduct Get(Guid guid)
Parameters
Type | Name | Description |
---|---|---|
System.Guid | guid | The Guid of a PreProduct |
Returns
Type | Description |
---|---|
PreProduct | Returns a new instance of PreProduct |
GetAll()
Gets all PreProducts
Declaration
IEnumerable<PreProduct> GetAll()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<PreProduct> | Returns a enumerable of all PreProducts |
GetPreProductAutoCompleteList()
Gets a list of all available product names
Declaration
IEnumerable<string> GetPreProductAutoCompleteList()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<System.String> |
Save(PreProduct)
Saves a PreProduct
Declaration
void Save(PreProduct preProduct)
Parameters
Type | Name | Description |
---|---|---|
PreProduct | preProduct | The PreProduct to save |