add TODO in postaldest

This commit is contained in:
2023-03-08 01:28:35 +01:00
parent 394f6332de
commit 78d2dc06d0

View File

@ -19,6 +19,7 @@ namespace WGneu.Models {
public virtual Country Country { get; set; }
public AT_Plz? Plz(WgContext ctx) {
// TODO getter
if (CountryCode != "AT") return null;
return ctx.Postleitzahlen.Where(p => p.Id == Id).FirstOrDefault();
}