Interface ICleaningStationRepository
Interface for all CleaningStation Db functions
Assembly: Simplic.Logistics.Cleaning.dll
Syntax
public interface ICleaningStationRepository
Methods
|
Improve this Doc
View Source
Delete(CleaningStation)
Deletes a CleaningStation
Declaration
void Delete(CleaningStation cleaningStation)
Parameters
|
Improve this Doc
View Source
Get(Guid)
Gets a single CleaningStation by its Id
Declaration
CleaningStation Get(Guid id)
Parameters
Type |
Name |
Description |
System.Guid |
id |
|
Returns
|
Improve this Doc
View Source
GetAll()
Gets a list of all cleaning stations
Declaration
IEnumerable<CleaningStation> GetAll()
Returns
|
Improve this Doc
View Source
Return all cleaning stations for a given contact id.
Declaration
IEnumerable<CleaningStation> GetCleaningStationsByContactId(Guid contactId)
Parameters
Type |
Name |
Description |
System.Guid |
contactId |
|
Returns
|
Improve this Doc
View Source
GetVehicleTypes(Guid)
Declaration
IEnumerable<VehicleType> GetVehicleTypes(Guid id)
Parameters
Type |
Name |
Description |
System.Guid |
id |
|
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<VehicleType> |
|
|
Improve this Doc
View Source
Save(CleaningStation)
Declaration
void Save(CleaningStation cleaningStation)
Parameters