Interface ITelematicTripSnapshotRepository
Interface for all Telematic Trip DB functions
Namespace: Simplic.Telematic.Core
Assembly: Simplic.Telematic.Core.dll
Syntax
public interface ITelematicTripSnapshotRepository
Methods
| Improve this Doc View SourceGetByVehicle(Guid, DateTime)
Returns an enumerable of telematic snapshots for a specific vehicle start from a specific date
Declaration
IEnumerable<TelematicTripSnapshot> GetByVehicle(Guid vehicleId, DateTime startDate)
Parameters
Type | Name | Description |
---|---|---|
System.Guid | vehicleId | Unique vehicle id |
System.DateTime | startDate | Start date |
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<TelematicTripSnapshot> | Enumerable of snapshots, ordered by current date and time |