|
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);
|
|
}
|
|
} |