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