Haltungslänge hinzugefügt
This commit is contained in:
@@ -17,5 +17,6 @@ namespace KanSan.Base.Interfaces.UI
|
|||||||
bool HaltungGespuelt { get; set; }
|
bool HaltungGespuelt { get; set; }
|
||||||
bool GenehmigungErforderlich { get; set; }
|
bool GenehmigungErforderlich { get; set; }
|
||||||
bool BaustellenAbsicherung { get; set; }
|
bool BaustellenAbsicherung { get; set; }
|
||||||
|
decimal Haltungslaenge { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
595
KanSan.Base/Migrations/20200330174150_HaltungslaengeAdded.Designer.cs
generated
Normal file
595
KanSan.Base/Migrations/20200330174150_HaltungslaengeAdded.Designer.cs
generated
Normal file
@@ -0,0 +1,595 @@
|
|||||||
|
// <auto-generated />
|
||||||
|
using System;
|
||||||
|
using KanSan.Base;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
||||||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
||||||
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
||||||
|
|
||||||
|
namespace KanSan.Base.Migrations
|
||||||
|
{
|
||||||
|
[DbContext(typeof(KanSanContext))]
|
||||||
|
[Migration("20200330174150_HaltungslaengeAdded")]
|
||||||
|
partial class HaltungslaengeAdded
|
||||||
|
{
|
||||||
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
||||||
|
{
|
||||||
|
#pragma warning disable 612, 618
|
||||||
|
modelBuilder
|
||||||
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn)
|
||||||
|
.HasAnnotation("ProductVersion", "3.1.3")
|
||||||
|
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
||||||
|
|
||||||
|
modelBuilder.Entity("KanSan.Base.Models.Baustelle", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("ID")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
|
.HasColumnType("integer")
|
||||||
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||||
|
|
||||||
|
b.Property<string>("BaustelleNummer")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<Guid>("GuidNr")
|
||||||
|
.HasColumnType("uuid");
|
||||||
|
|
||||||
|
b.Property<string>("OrtTeil")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<int?>("ProjektID")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.HasKey("ID");
|
||||||
|
|
||||||
|
b.HasIndex("ProjektID");
|
||||||
|
|
||||||
|
b.ToTable("Baustelle");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("KanSan.Base.Models.Fahrzeug", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("ID")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
|
.HasColumnType("integer")
|
||||||
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||||
|
|
||||||
|
b.Property<Guid>("GuidNr")
|
||||||
|
.HasColumnType("uuid");
|
||||||
|
|
||||||
|
b.Property<string>("Kennzeichen")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.HasKey("ID");
|
||||||
|
|
||||||
|
b.ToTable("Fahrzeuge");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("KanSan.Base.Models.GueteschutzProtokoll", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("ID")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
|
.HasColumnType("integer")
|
||||||
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||||
|
|
||||||
|
b.Property<int>("AussenTemp")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.Property<bool>("Bericht")
|
||||||
|
.HasColumnType("boolean");
|
||||||
|
|
||||||
|
b.Property<bool>("Dichtheit")
|
||||||
|
.HasColumnType("boolean");
|
||||||
|
|
||||||
|
b.Property<string>("Discriminator")
|
||||||
|
.IsRequired()
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<bool>("Film")
|
||||||
|
.HasColumnType("boolean");
|
||||||
|
|
||||||
|
b.Property<Guid>("GuidNr")
|
||||||
|
.HasColumnType("uuid");
|
||||||
|
|
||||||
|
b.Property<int>("KanalTemp")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.Property<int?>("SchadPositionID")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.Property<bool>("Sichtkontrolle")
|
||||||
|
.HasColumnType("boolean");
|
||||||
|
|
||||||
|
b.Property<bool>("Video")
|
||||||
|
.HasColumnType("boolean");
|
||||||
|
|
||||||
|
b.Property<int>("Wetter")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.HasKey("ID");
|
||||||
|
|
||||||
|
b.HasIndex("SchadPositionID");
|
||||||
|
|
||||||
|
b.ToTable("GueteschutzProtokoll");
|
||||||
|
|
||||||
|
b.HasDiscriminator<string>("Discriminator").HasValue("GueteschutzProtokoll");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("KanSan.Base.Models.Kunde", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("ID")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
|
.HasColumnType("integer")
|
||||||
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||||
|
|
||||||
|
b.Property<Guid>("GuidNr")
|
||||||
|
.HasColumnType("uuid");
|
||||||
|
|
||||||
|
b.Property<string>("Nachname")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<string>("Ort")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<string>("PLZ")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<string>("Strasse")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<string>("Vorname")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.HasKey("ID");
|
||||||
|
|
||||||
|
b.ToTable("Kunden");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("KanSan.Base.Models.LeitungsverzeichnisPosition", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("ID")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
|
.HasColumnType("integer")
|
||||||
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||||
|
|
||||||
|
b.Property<string>("Beschreibung")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<string>("Einheit")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<Guid>("GuidNr")
|
||||||
|
.HasColumnType("uuid");
|
||||||
|
|
||||||
|
b.Property<string>("Positionsnummer")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.HasKey("ID");
|
||||||
|
|
||||||
|
b.ToTable("LeitungsverzeichnisPositionen");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("KanSan.Base.Models.Projekt", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("ID")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
|
.HasColumnType("integer")
|
||||||
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||||
|
|
||||||
|
b.Property<Guid>("GuidNr")
|
||||||
|
.HasColumnType("uuid");
|
||||||
|
|
||||||
|
b.Property<int?>("KundeID")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.Property<string>("Ort")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<string>("Projektnummer")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.HasKey("ID");
|
||||||
|
|
||||||
|
b.HasIndex("KundeID");
|
||||||
|
|
||||||
|
b.ToTable("Projekte");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("KanSan.Base.Models.Sanierungskonzept", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("ID")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
|
.HasColumnType("integer")
|
||||||
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||||
|
|
||||||
|
b.Property<Guid>("GuidNr")
|
||||||
|
.HasColumnType("uuid");
|
||||||
|
|
||||||
|
b.Property<int>("SanierungsTyp")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.HasKey("ID");
|
||||||
|
|
||||||
|
b.ToTable("Sanierungskonzept");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("KanSan.Base.Models.Schaeden", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("ID")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
|
.HasColumnType("integer")
|
||||||
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||||
|
|
||||||
|
b.Property<decimal>("Entfernung")
|
||||||
|
.HasColumnType("numeric");
|
||||||
|
|
||||||
|
b.Property<Guid>("GuidNr")
|
||||||
|
.HasColumnType("uuid");
|
||||||
|
|
||||||
|
b.Property<bool>("Infiltration")
|
||||||
|
.HasColumnType("boolean");
|
||||||
|
|
||||||
|
b.Property<bool>("RissBruchScherbe")
|
||||||
|
.HasColumnType("boolean");
|
||||||
|
|
||||||
|
b.Property<int>("SanierungsTyp")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.Property<int?>("SanierungskonzeptID")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.Property<bool>("SchadstelleFaekalienFrei")
|
||||||
|
.HasColumnType("boolean");
|
||||||
|
|
||||||
|
b.Property<int?>("SewerID")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.Property<bool>("StutzenEinragend")
|
||||||
|
.HasColumnType("boolean");
|
||||||
|
|
||||||
|
b.Property<bool>("VorbehandeltFraeser")
|
||||||
|
.HasColumnType("boolean");
|
||||||
|
|
||||||
|
b.Property<bool>("VorbehandeltHD")
|
||||||
|
.HasColumnType("boolean");
|
||||||
|
|
||||||
|
b.Property<bool>("VorbehandeltMech")
|
||||||
|
.HasColumnType("boolean");
|
||||||
|
|
||||||
|
b.Property<bool>("WurzelInkrustationAblagerungen")
|
||||||
|
.HasColumnType("boolean");
|
||||||
|
|
||||||
|
b.HasKey("ID");
|
||||||
|
|
||||||
|
b.HasIndex("SanierungskonzeptID");
|
||||||
|
|
||||||
|
b.HasIndex("SewerID");
|
||||||
|
|
||||||
|
b.ToTable("Schaeden");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("KanSan.Base.Models.Sewer", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("ID")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
|
.HasColumnType("integer")
|
||||||
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||||
|
|
||||||
|
b.Property<int?>("BaustelleID")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.Property<bool>("BaustellensicherungErforderlich")
|
||||||
|
.HasColumnType("boolean");
|
||||||
|
|
||||||
|
b.Property<int>("DN")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.Property<bool>("GenehmigungErforderlich")
|
||||||
|
.HasColumnType("boolean");
|
||||||
|
|
||||||
|
b.Property<Guid>("GuidNr")
|
||||||
|
.HasColumnType("uuid");
|
||||||
|
|
||||||
|
b.Property<bool>("HaltungGespuelt")
|
||||||
|
.HasColumnType("boolean");
|
||||||
|
|
||||||
|
b.Property<decimal>("Haltungslaenge")
|
||||||
|
.HasColumnType("numeric");
|
||||||
|
|
||||||
|
b.Property<int>("Material")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.Property<string>("ObjektNummer")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<int?>("PunktObenID")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.Property<int>("PunktTypeOben")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.Property<int>("PunktTypeUnten")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.Property<int?>("PunktUntenID")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.Property<bool>("RohrleitungInBetrieb")
|
||||||
|
.HasColumnType("boolean");
|
||||||
|
|
||||||
|
b.Property<int>("SewerType")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.Property<string>("StrasseName")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<bool>("WasserHaltungDurchgefuehrt")
|
||||||
|
.HasColumnType("boolean");
|
||||||
|
|
||||||
|
b.HasKey("ID");
|
||||||
|
|
||||||
|
b.HasIndex("BaustelleID");
|
||||||
|
|
||||||
|
b.HasIndex("PunktObenID");
|
||||||
|
|
||||||
|
b.HasIndex("PunktUntenID");
|
||||||
|
|
||||||
|
b.ToTable("Kanaele");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("KanSan.Base.Models.SewerPoint", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("ID")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
|
.HasColumnType("integer")
|
||||||
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||||
|
|
||||||
|
b.Property<Guid>("GuidNr")
|
||||||
|
.HasColumnType("uuid");
|
||||||
|
|
||||||
|
b.Property<string>("Objektnummer")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.HasKey("ID");
|
||||||
|
|
||||||
|
b.ToTable("SewerPoints");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("KanSan.Base.Models.Taetigkeiten", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("ID")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
|
.HasColumnType("integer")
|
||||||
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||||
|
|
||||||
|
b.Property<decimal>("Anzahl")
|
||||||
|
.HasColumnType("numeric");
|
||||||
|
|
||||||
|
b.Property<int?>("FahrzeugID")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.Property<int?>("GueteschutzProtokolID")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.Property<Guid>("GuidNr")
|
||||||
|
.HasColumnType("uuid");
|
||||||
|
|
||||||
|
b.Property<int?>("LeitungsverzeichnisPositionID")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.Property<string>("Mitarbeiter")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<int?>("SanierungskonzeptID")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.Property<DateTime>("ZeitStempel")
|
||||||
|
.HasColumnType("timestamp without time zone");
|
||||||
|
|
||||||
|
b.HasKey("ID");
|
||||||
|
|
||||||
|
b.HasIndex("FahrzeugID");
|
||||||
|
|
||||||
|
b.HasIndex("GueteschutzProtokolID");
|
||||||
|
|
||||||
|
b.HasIndex("LeitungsverzeichnisPositionID");
|
||||||
|
|
||||||
|
b.HasIndex("SanierungskonzeptID");
|
||||||
|
|
||||||
|
b.ToTable("Taetigkeiten");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("KanSan.Base.Models.HutprofilSan", b =>
|
||||||
|
{
|
||||||
|
b.HasBaseType("KanSan.Base.Models.GueteschutzProtokoll");
|
||||||
|
|
||||||
|
b.Property<DateTime>("AnpressenPacker")
|
||||||
|
.HasColumnType("timestamp without time zone");
|
||||||
|
|
||||||
|
b.Property<bool>("Auffaelligkeit")
|
||||||
|
.HasColumnType("boolean");
|
||||||
|
|
||||||
|
b.Property<DateTime>("EntlueftenPacker")
|
||||||
|
.HasColumnType("timestamp without time zone");
|
||||||
|
|
||||||
|
b.Property<bool>("FixierungAufPacker")
|
||||||
|
.HasColumnType("boolean");
|
||||||
|
|
||||||
|
b.Property<int>("Flaechengewicht")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.Property<string>("HarzMaterialArt")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<string>("HarzmaterialHersteller")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<bool>("InnenBeschichtung")
|
||||||
|
.HasColumnType("boolean");
|
||||||
|
|
||||||
|
b.Property<string>("KompACharge")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<string>("KompBCharge")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<DateTime>("MischZeit")
|
||||||
|
.HasColumnType("timestamp without time zone");
|
||||||
|
|
||||||
|
b.Property<double>("PackerDruckAnfang")
|
||||||
|
.HasColumnType("double precision");
|
||||||
|
|
||||||
|
b.Property<double>("PackerDruckEnde")
|
||||||
|
.HasColumnType("double precision");
|
||||||
|
|
||||||
|
b.Property<string>("RohrDN")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<double>("SeitenKanalDruckAnfang")
|
||||||
|
.HasColumnType("double precision");
|
||||||
|
|
||||||
|
b.Property<double>("SeitenKanalDruckEnde")
|
||||||
|
.HasColumnType("double precision");
|
||||||
|
|
||||||
|
b.Property<string>("TraegerCharge")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<string>("TraegerHersteller")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<string>("TraegerKurzliner")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<string>("Winkel")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.HasDiscriminator().HasValue("HutprofilSan");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("KanSan.Base.Models.KurzlinerSan", b =>
|
||||||
|
{
|
||||||
|
b.HasBaseType("KanSan.Base.Models.GueteschutzProtokoll");
|
||||||
|
|
||||||
|
b.Property<DateTime>("AnpressenPacker")
|
||||||
|
.HasColumnType("timestamp without time zone");
|
||||||
|
|
||||||
|
b.Property<bool>("Auffaelligkeit")
|
||||||
|
.HasColumnType("boolean");
|
||||||
|
|
||||||
|
b.Property<double>("Breit")
|
||||||
|
.HasColumnType("double precision");
|
||||||
|
|
||||||
|
b.Property<DateTime>("EntlueftenPacker")
|
||||||
|
.HasColumnType("timestamp without time zone");
|
||||||
|
|
||||||
|
b.Property<bool>("FixierungAufPacker")
|
||||||
|
.HasColumnType("boolean");
|
||||||
|
|
||||||
|
b.Property<int>("Flaechengewicht")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.Property<string>("HarzMaterialArt")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<string>("HarzmaterialHersteller")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<string>("KompACharge")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<string>("KompBCharge")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<double>("Lang")
|
||||||
|
.HasColumnType("double precision");
|
||||||
|
|
||||||
|
b.Property<DateTime>("MischZeit")
|
||||||
|
.HasColumnType("timestamp without time zone");
|
||||||
|
|
||||||
|
b.Property<double>("PackerDruckAnfang")
|
||||||
|
.HasColumnType("double precision");
|
||||||
|
|
||||||
|
b.Property<double>("PackerDruckEnde")
|
||||||
|
.HasColumnType("double precision");
|
||||||
|
|
||||||
|
b.Property<string>("TraegerCharge")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<string>("TraegerHersteller")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<string>("TraegerKurzliner")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.HasDiscriminator().HasValue("KurzlinerSan");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("KanSan.Base.Models.Baustelle", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("KanSan.Base.Models.Projekt", "Projekt")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("ProjektID");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("KanSan.Base.Models.GueteschutzProtokoll", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("KanSan.Base.Models.Schaeden", "SchadPosition")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("SchadPositionID");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("KanSan.Base.Models.Projekt", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("KanSan.Base.Models.Kunde", "Kunde")
|
||||||
|
.WithMany("Baustellen")
|
||||||
|
.HasForeignKey("KundeID");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("KanSan.Base.Models.Schaeden", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("KanSan.Base.Models.Sanierungskonzept", "Sanierungskonzept")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("SanierungskonzeptID");
|
||||||
|
|
||||||
|
b.HasOne("KanSan.Base.Models.Sewer", "Sewer")
|
||||||
|
.WithMany("Schaeden")
|
||||||
|
.HasForeignKey("SewerID");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("KanSan.Base.Models.Sewer", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("KanSan.Base.Models.Baustelle", "Baustelle")
|
||||||
|
.WithMany("Kanaele")
|
||||||
|
.HasForeignKey("BaustelleID");
|
||||||
|
|
||||||
|
b.HasOne("KanSan.Base.Models.SewerPoint", "PunktOben")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("PunktObenID");
|
||||||
|
|
||||||
|
b.HasOne("KanSan.Base.Models.SewerPoint", "PunktUnten")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("PunktUntenID");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("KanSan.Base.Models.Taetigkeiten", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("KanSan.Base.Models.Fahrzeug", "Fahrzeug")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("FahrzeugID");
|
||||||
|
|
||||||
|
b.HasOne("KanSan.Base.Models.GueteschutzProtokoll", "GueteschutzProtokol")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("GueteschutzProtokolID");
|
||||||
|
|
||||||
|
b.HasOne("KanSan.Base.Models.LeitungsverzeichnisPosition", "LeitungsverzeichnisPosition")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("LeitungsverzeichnisPositionID");
|
||||||
|
|
||||||
|
b.HasOne("KanSan.Base.Models.Sanierungskonzept", "Sanierungskonzept")
|
||||||
|
.WithMany("Taetigkeiten")
|
||||||
|
.HasForeignKey("SanierungskonzeptID");
|
||||||
|
});
|
||||||
|
#pragma warning restore 612, 618
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
23
KanSan.Base/Migrations/20200330174150_HaltungslaengeAdded.cs
Normal file
23
KanSan.Base/Migrations/20200330174150_HaltungslaengeAdded.cs
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
|
namespace KanSan.Base.Migrations
|
||||||
|
{
|
||||||
|
public partial class HaltungslaengeAdded : Migration
|
||||||
|
{
|
||||||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.AddColumn<decimal>(
|
||||||
|
name: "Haltungslaenge",
|
||||||
|
table: "Kanaele",
|
||||||
|
nullable: false,
|
||||||
|
defaultValue: 0m);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.DropColumn(
|
||||||
|
name: "Haltungslaenge",
|
||||||
|
table: "Kanaele");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -16,7 +16,7 @@ namespace KanSan.Base.Migrations
|
|||||||
#pragma warning disable 612, 618
|
#pragma warning disable 612, 618
|
||||||
modelBuilder
|
modelBuilder
|
||||||
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn)
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn)
|
||||||
.HasAnnotation("ProductVersion", "3.1.2")
|
.HasAnnotation("ProductVersion", "3.1.3")
|
||||||
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
||||||
|
|
||||||
modelBuilder.Entity("KanSan.Base.Models.Baustelle", b =>
|
modelBuilder.Entity("KanSan.Base.Models.Baustelle", b =>
|
||||||
@@ -291,6 +291,9 @@ namespace KanSan.Base.Migrations
|
|||||||
b.Property<bool>("HaltungGespuelt")
|
b.Property<bool>("HaltungGespuelt")
|
||||||
.HasColumnType("boolean");
|
.HasColumnType("boolean");
|
||||||
|
|
||||||
|
b.Property<decimal>("Haltungslaenge")
|
||||||
|
.HasColumnType("numeric");
|
||||||
|
|
||||||
b.Property<int>("Material")
|
b.Property<int>("Material")
|
||||||
.HasColumnType("integer");
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ namespace KanSan.Base.Models
|
|||||||
public bool WasserHaltungDurchgefuehrt { get; set; }
|
public bool WasserHaltungDurchgefuehrt { get; set; }
|
||||||
public bool GenehmigungErforderlich { get; set; }
|
public bool GenehmigungErforderlich { get; set; }
|
||||||
public bool BaustellensicherungErforderlich { get; set; }
|
public bool BaustellensicherungErforderlich { get; set; }
|
||||||
|
public decimal Haltungslaenge { get; set; }
|
||||||
|
|
||||||
public List<Schaeden> Schaeden { get; } = new List<Schaeden>();
|
public List<Schaeden> Schaeden { get; } = new List<Schaeden>();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ namespace KanSan.ViewModel
|
|||||||
bool haltungGespuelt;
|
bool haltungGespuelt;
|
||||||
bool genehmigungErforderlich;
|
bool genehmigungErforderlich;
|
||||||
bool baustellenAbsicherung;
|
bool baustellenAbsicherung;
|
||||||
|
decimal haltungslaenge;
|
||||||
|
|
||||||
private Sewer objekt;
|
private Sewer objekt;
|
||||||
|
|
||||||
@@ -138,6 +139,16 @@ namespace KanSan.ViewModel
|
|||||||
OnPropertyChanged();
|
OnPropertyChanged();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
public decimal Haltungslaenge
|
||||||
|
{
|
||||||
|
get => haltungslaenge;
|
||||||
|
set
|
||||||
|
{
|
||||||
|
if (haltungslaenge == value) return;
|
||||||
|
haltungslaenge = value;
|
||||||
|
OnPropertyChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
public ObjekteEditViewModel(Sewer sewer)
|
public ObjekteEditViewModel(Sewer sewer)
|
||||||
@@ -154,12 +165,14 @@ namespace KanSan.ViewModel
|
|||||||
haltungGespuelt = objekt.HaltungGespuelt;
|
haltungGespuelt = objekt.HaltungGespuelt;
|
||||||
genehmigungErforderlich = objekt.GenehmigungErforderlich;
|
genehmigungErforderlich = objekt.GenehmigungErforderlich;
|
||||||
baustellenAbsicherung = objekt.BaustellensicherungErforderlich;
|
baustellenAbsicherung = objekt.BaustellensicherungErforderlich;
|
||||||
|
haltungslaenge = objekt.Haltungslaenge;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Speichern()
|
public void Speichern()
|
||||||
{
|
{
|
||||||
objekt.StrasseName = strassename;
|
objekt.StrasseName = strassename;
|
||||||
objekt.DN = durchmesser;
|
objekt.DN = durchmesser;
|
||||||
|
objekt.Haltungslaenge = haltungslaenge;
|
||||||
objekt.RohrleitungInBetrieb = rohrleitungInBetrieb;
|
objekt.RohrleitungInBetrieb = rohrleitungInBetrieb;
|
||||||
objekt.WasserHaltungDurchgefuehrt = wasserHaltungdurchgefuehrt;
|
objekt.WasserHaltungDurchgefuehrt = wasserHaltungdurchgefuehrt;
|
||||||
objekt.BaustellensicherungErforderlich = baustellenAbsicherung;
|
objekt.BaustellensicherungErforderlich = baustellenAbsicherung;
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ namespace KanSan.SampleData
|
|||||||
bool haltungGespuelt;
|
bool haltungGespuelt;
|
||||||
bool genehmigungErforderlich;
|
bool genehmigungErforderlich;
|
||||||
bool baustellenAbsicherung;
|
bool baustellenAbsicherung;
|
||||||
|
decimal haltungslaenge;
|
||||||
|
|
||||||
|
|
||||||
public string StrasseName { get => strasseName; set => throw new NotImplementedException(); }
|
public string StrasseName { get => strasseName; set => throw new NotImplementedException(); }
|
||||||
@@ -31,7 +32,7 @@ namespace KanSan.SampleData
|
|||||||
public bool HaltungGespuelt { get => haltungGespuelt; set => throw new NotImplementedException(); }
|
public bool HaltungGespuelt { get => haltungGespuelt; set => throw new NotImplementedException(); }
|
||||||
public bool GenehmigungErforderlich { get => genehmigungErforderlich; set => throw new NotImplementedException(); }
|
public bool GenehmigungErforderlich { get => genehmigungErforderlich; set => throw new NotImplementedException(); }
|
||||||
public bool BaustellenAbsicherung { get => baustellenAbsicherung; set => throw new NotImplementedException(); }
|
public bool BaustellenAbsicherung { get => baustellenAbsicherung; set => throw new NotImplementedException(); }
|
||||||
|
public decimal Haltungslaenge { get => haltungslaenge; set => throw new NotImplementedException(); }
|
||||||
public ObjekteEditViewModelSampleData()
|
public ObjekteEditViewModelSampleData()
|
||||||
{
|
{
|
||||||
strasseName = "Grader Weg";
|
strasseName = "Grader Weg";
|
||||||
@@ -40,6 +41,7 @@ namespace KanSan.SampleData
|
|||||||
punktUnten = "SW02";
|
punktUnten = "SW02";
|
||||||
durchmesser = 150;
|
durchmesser = 150;
|
||||||
material = "Steinzeug";
|
material = "Steinzeug";
|
||||||
|
haltungslaenge = 10.3m;
|
||||||
rohrleitungInBetrieb = false;
|
rohrleitungInBetrieb = false;
|
||||||
wasserHaltungdurchgefuehrt = true;
|
wasserHaltungdurchgefuehrt = true;
|
||||||
haltungGespuelt = true;
|
haltungGespuelt = true;
|
||||||
|
|||||||
@@ -48,20 +48,23 @@
|
|||||||
<RowDefinition />
|
<RowDefinition />
|
||||||
<RowDefinition />
|
<RowDefinition />
|
||||||
<RowDefinition />
|
<RowDefinition />
|
||||||
|
<RowDefinition />
|
||||||
</Grid.RowDefinitions>
|
</Grid.RowDefinitions>
|
||||||
<Label Grid.Row="0" Grid.Column="0" Content="Strassename"/>
|
<Label Grid.Row="0" Grid.Column="0" Content="Strassename"/>
|
||||||
<Label Grid.Row="1" Grid.Column="0" Content="Obere Punkt" />
|
<Label Grid.Row="1" Grid.Column="0" Content="Obere Punkt" />
|
||||||
<Label Grid.Row="2" Grid.Column="0" Content="Untere Punkt" />
|
<Label Grid.Row="2" Grid.Column="0" Content="Untere Punkt" />
|
||||||
<Label Grid.Row="3" Grid.Column="0" Content="Objektbezeichnung" />
|
<Label Grid.Row="3" Grid.Column="0" Content="Objektbezeichnung" />
|
||||||
<Label Grid.Row="4" Grid.Column="0" Content="Durchmesser" />
|
<Label Grid.Row="4" Grid.Column="0" Content="Durchmesser" />
|
||||||
<Label Grid.Row="5" Grid.Column="0" Content="Material" />
|
<Label Grid.Row="5" Grid.Column="0" Content="Haltungslänge" />
|
||||||
|
<Label Grid.Row="6" Grid.Column="0" Content="Material" />
|
||||||
|
|
||||||
<TextBox Grid.Row="0" Grid.Column="1" Text="{Binding Path=(iself:IObjekteEditViewModel.StrasseName)}" />
|
<TextBox Grid.Row="0" Grid.Column="1" Text="{Binding Path=(iself:IObjekteEditViewModel.StrasseName)}" />
|
||||||
<TextBox Grid.Row="1" Grid.Column="1" Text="{Binding Path=(iself:IObjekteEditViewModel.PunktOben)}" />
|
<TextBox Grid.Row="1" Grid.Column="1" Text="{Binding Path=(iself:IObjekteEditViewModel.PunktOben)}" />
|
||||||
<TextBox Grid.Row="2" Grid.Column="1" Text="{Binding Path=(iself:IObjekteEditViewModel.PunktUnten)}" />
|
<TextBox Grid.Row="2" Grid.Column="1" Text="{Binding Path=(iself:IObjekteEditViewModel.PunktUnten)}" />
|
||||||
<TextBox Grid.Row="3" Grid.Column="1" Text="{Binding Path=(iself:IObjekteEditViewModel.Objektnummer)}" />
|
<TextBox Grid.Row="3" Grid.Column="1" Text="{Binding Path=(iself:IObjekteEditViewModel.Objektnummer)}" />
|
||||||
<TextBox Grid.Row="4" Grid.Column="1" Text="{Binding Path=(iself:IObjekteEditViewModel.Durchmesser)}" />
|
<TextBox Grid.Row="4" Grid.Column="1" Text="{Binding Path=(iself:IObjekteEditViewModel.Durchmesser)}" />
|
||||||
<ComboBox Grid.Row="5" Grid.Column="1">
|
<TextBox Grid.Row="5" Grid.Column="1" Text="{Binding Path=(iself:IObjekteEditViewModel.Haltungslaenge)}" />
|
||||||
|
<ComboBox Grid.Row="6" Grid.Column="1">
|
||||||
<ComboBoxItem Content="Lala" />
|
<ComboBoxItem Content="Lala" />
|
||||||
<ComboBoxItem Content="Haha" />
|
<ComboBoxItem Content="Haha" />
|
||||||
</ComboBox>
|
</ComboBox>
|
||||||
|
|||||||
Reference in New Issue
Block a user