Skip to content
Snippets Groups Projects
Commit c3bb2c1d authored by Антон Кудряшов's avatar Антон Кудряшов
Browse files

- fixed power

parent e7a465ae
No related branches found
No related tags found
No related merge requests found
......@@ -230,7 +230,7 @@ namespace MES_Wind
DataRow featureData = featurepoint.DataRow;
dummystation.Identifier = featurepoint.Fid;
dummystation.Name = featureData["Label"].ToString();
dummystation.Power = int.Parse(featureData["Voltage"].ToString());
dummystation.Voltage = int.Parse(featureData["Voltage"].ToString());
int issr = int.Parse(featureData["IsSource"].ToString());
if (issr == 0)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment