| 1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
-
- namespace cwebplusApp.Shared.Models {
- public class MissingReport : Report {
- public string PersonPLZ { get; set; } // required
- public string PersonOrt { get; set; } // required
- public string PersonStrasse { get; set; } // required
- public uint Alter { get; set; }
- public uint 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 string StandortStrasse { get; set; }
- public string StandortPlz { get; set; }
- public string StandortOrt { get; set; }
- public DateTime? StandortDatum { 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;
- }
- }
- }
|