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

25
Elwig/Models/AT_Ort.cs Normal file
View File

@ -0,0 +1,25 @@
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations.Schema;
namespace Elwig.Models {
[Table("AT_ort"), PrimaryKey("Okz")]
public class AT_Ort {
[Column("okz")]
public int Okz { get; private set; }
[Column("gkz")]
public int Gkz { get; private set; }
[Column("kgnr")]
public int? KgNr { get; private set; }
[Column("name")]
public string Name { get; private set; }
[ForeignKey("Gkz")]
public virtual AT_Gem Gem { get; private set; }
[ForeignKey("KgNr")]
public virtual AT_Kg? Kg { get; private set; }
}
}