namespace cwebplusApp.Shared.Models { public class MissingReport : Report { public string Mail { get; set; } // required public string PersonPLZ { get; set; } // required public string PersonOrt { get; set; } // required public string PersonStrasse { get; set; } // required public uint Alter { get; set; } public float Preis { get; set; } public string NeueMarke { get; set; } public string Zusatz { get; set; } public string Postfach { get; set; } public int? SuchDienstId { get; set; } public string SuchDienstNr { get; set; } public MissingReport() : this("", "", "", "", "", "", "", null, null, null) { } public MissingReport(string anrede, string vorname, string nachname, string mail, string personPLZ, string personOrt, string personStrasse, int? typId, int? markeId, int? farbeId) { this.Anrede = anrede; this.Vorname = vorname; this.Nachname = nachname; this.Mail = mail; this.PersonPLZ = personPLZ; this.PersonOrt = personOrt; this.PersonStrasse = personStrasse; this.TypId = typId; this.MarkeId = markeId; this.FarbeId = farbeId; } } }