sửa lỗi chính tả của biến {TotalOut}

This commit is contained in:
Le Chau 2020-06-25 10:41:37 +07:00
parent bc86b4c00f
commit effa22abc9

View File

@ -58,7 +58,7 @@ namespace AIParkingApplication
})); }));
lblVehicleTotalOut.Invoke(new Action(() => lblVehicleTotalOut.Invoke(new Action(() =>
{ {
lblVehicleTotalOut.Text = vehicle.TotelOut; lblVehicleTotalOut.Text = vehicle.TotalOut;
})); }));
} }
@ -95,14 +95,14 @@ namespace AIParkingApplication
[JsonProperty("oto")] [JsonProperty("oto")]
public int NumberOfCar { get; set; } public int NumberOfCar { get; set; }
[JsonProperty("moto")] [JsonProperty("moto1")]
public int NumberOfMoto { get; set; } public int NumberOfMoto { get; set; }
[JsonProperty("total_in")] [JsonProperty("total_in")]
public string TotalIn { get; set; } public string TotalIn { get; set; }
[JsonProperty("total_out")] [JsonProperty("total_out")]
public string TotelOut { get; set; } public string TotalOut { get; set; }
} }
} }
} }