|
@@ -178,11 +178,11 @@ namespace EVCB_OCPP.WSServer
|
|
|
_copyClientDic = new Dictionary<string, ClientData>(clientDic);
|
|
|
|
|
|
}
|
|
|
- var lcn = clientDic.Select(c => c.Value.CustomerName).Distinct().ToList();
|
|
|
+ var lcn = clientDic.Select(c => c.Value.CustomerId).Distinct().ToList();
|
|
|
int iLcn = 1;
|
|
|
foreach (var c in lcn)
|
|
|
{
|
|
|
- logger.Info(iLcn + ":" + c + ":" + clientDic.Where(z => z.Value.CustomerName == c).Count().ToString());
|
|
|
+ logger.Info(iLcn + ":" + c + ":" + clientDic.Where(z => z.Value.CustomerId == c).Count().ToString());
|
|
|
iLcn++;
|
|
|
}
|
|
|
|