Added Add/Edit function to MemberListWindow

This commit is contained in:
2023-02-21 20:37:49 +01:00
parent c90e986b52
commit a060728a48
11 changed files with 334 additions and 283 deletions

View File

@ -21,7 +21,7 @@ namespace WGneu.Models
public string FamilyName { get; set; }
[Column("zwstid")]
public string Zweigstelle { get; set; }
public string ZwstId { get; set; }
[Column("country")]
public string CountryCode { get; set; }
@ -43,5 +43,8 @@ namespace WGneu.Models
[ForeignKey("DefaultKgNr")]
public virtual AT_Kg DefaultKg { get; set; }
[ForeignKey("ZwstId")]
public virtual Branch Branch { get; set; }
}
}