Ejemplo n.º 1
0
 public async Task <ActionResult <List <VehicleData> > > GetVehiclesLastData(int companyId, string startDateTime, string endDateTime, [FromQuery] int?vehicleId = null)
 {
     return(Ok(await _vehicleDataService.GetVehiclesLastData(companyId, vehicleId, startDateTime, endDateTime)));
 }