Interface IVehicleTypeRepository
Interface for VehicleType DB functions
Namespace: Simplic.Logistics.Vehicle
Assembly: Simplic.Logistics.Vehicle.dll
Syntax
public interface IVehicleTypeRepository
Methods
| Improve this Doc View SourceGet(Guid)
Gets a VehicleType
Declaration
VehicleType Get(Guid id)
Parameters
Type | Name | Description |
---|---|---|
System.Guid | id |
Returns
Type | Description |
---|---|
VehicleType |
GetAll()
Gets all VehicleTypes
Declaration
IEnumerable<VehicleType> GetAll()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<VehicleType> |
GetAllForCleanings()
Gets all VehicleTypes that are selectable in a cleaning
Declaration
IEnumerable<VehicleType> GetAllForCleanings()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<VehicleType> |