Interface IVehicleImageRepository
Interface for a repository that will load, save and delete vehicle images from a data source.
Assembly: Simplic.Logistics.Vehicle.dll
Syntax
public interface IVehicleImageRepository
Methods
|
Improve this Doc
View Source
GetAllBlobsForVehicle(Guid)
Gets all image blobs for a given vehicle guid.
Declaration
IEnumerable<byte[]> GetAllBlobsForVehicle(Guid vehicleGuid)
Parameters
Type |
Name |
Description |
System.Guid |
vehicleGuid |
|
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<System.Byte[]> |
|
|
Improve this Doc
View Source
GetAllForVehicle(Guid)
Gets all available vehicle images for a given vehicle guid.
Declaration
IEnumerable<VehicleImage> GetAllForVehicle(Guid vehicleGuid)
Parameters
Type |
Name |
Description |
System.Guid |
vehicleGuid |
|
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<VehicleImage> |
|