14 lines
313 B
C#
14 lines
313 B
C#
|
using InnovEnergy.App.VrmGrabber.DataTypes;
|
||
|
|
||
|
namespace InnovEnergy.App.VrmGrabber.Database;
|
||
|
|
||
|
|
||
|
public static partial class Db
|
||
|
{
|
||
|
|
||
|
public static Installation? GetInstallationByIdentifier(String? identifier)
|
||
|
{
|
||
|
return Installations
|
||
|
.FirstOrDefault(i => i.Identifier == identifier);
|
||
|
}
|
||
|
}
|