Rename solution directory to Elwig

This commit is contained in:
2023-03-18 11:04:22 +01:00
parent 649578e8bf
commit 769d80eb81
48 changed files with 7 additions and 11 deletions

View File

@ -0,0 +1,31 @@
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations.Schema;
namespace Elwig.Models {
[Table("AT_plz_dest"), PrimaryKey("Id"), Index("Plz", "Okz", IsUnique = true)]
public class AT_PlzDest {
[Column("plz")]
public int Plz { get; private set; }
[Column("okz")]
public int Okz { get; private set; }
[Column("country")]
public string CountryCode { get; private set; }
[Column("id")]
public string Id { get; private set; }
[Column("dest")]
public string Dest { get; private set; }
[ForeignKey("Plz")]
public virtual AT_Plz AtPlz { get; private set; }
[ForeignKey("Okz")]
public virtual AT_Ort Ort { get; private set; }
[ForeignKey("CountryCode")]
public virtual Country Country { get; private set; }
}
}