2023-05-04 15:22:58 +00:00
|
|
|
using InnovEnergy.App.VrmGrabber.DataTypes;
|
2023-04-27 14:59:45 +00:00
|
|
|
|
2023-05-04 15:22:58 +00:00
|
|
|
namespace InnovEnergy.App.VrmGrabber.Database;
|
2023-04-27 14:59:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
public static partial class Db
|
|
|
|
{
|
|
|
|
|
|
|
|
public static Installation? GetInstallationById(Int64? id)
|
|
|
|
{
|
|
|
|
return Installations
|
|
|
|
.FirstOrDefault(i => i.Id == id);
|
|
|
|
}
|
|
|
|
}
|