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 int Alter { get; set; } public double 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("", "", "", "", "", "", "", -1, -1, -1) { } 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; } } }