| 123456789101112131415161718192021222324252627282930313233 |
- 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("", "", "", "", "", "", "", -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;
- }
- }
- }
|