missing file last commit
This commit is contained in:
parent
7be57deb46
commit
43e3ce2922
@ -34,6 +34,16 @@ namespace Manager.Services
|
||||
return _Devices.Find<Device>(d => d.Id == id).FirstOrDefault();
|
||||
}
|
||||
|
||||
public bool IsExistIpWLAN(string ip)
|
||||
{
|
||||
return _Devices.Find<Device>(d => d.IpAddressWLAN == ip).FirstOrDefault() != null ? true : false;
|
||||
}
|
||||
|
||||
public bool IsExistIpETH(string ip)
|
||||
{
|
||||
return _Devices.Find<Device>(d => d.IpAddressETH == ip).FirstOrDefault() != null ? true : false;
|
||||
}
|
||||
|
||||
public bool IsExist(string id)
|
||||
{
|
||||
return _Devices.Find<Device>(d => d.Id == id).FirstOrDefault() != null ? true : false;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user