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 Boolean Delete(Installation installation)
|
|
|
|
{
|
|
|
|
return Installations.Delete(i => i.Id == installation.Id) > 0;
|
|
|
|
}
|
|
|
|
}
|