PWA Fundvelo der Caritas.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. namespace cwebplusApp.Shared.Models {
  3. public class MissingReport : Report {
  4. public string PersonPLZ { get; set; } // required
  5. public string PersonOrt { get; set; } // required
  6. public string PersonStrasse { get; set; } // required
  7. public uint Alter { get; set; }
  8. public uint Preis { get; set; }
  9. public string NeueMarke { get; set; }
  10. public string Zusatz { get; set; }
  11. public string Postfach { get; set; }
  12. public int? SuchDienstId { get; set; }
  13. public string SuchDienstNr { get; set; }
  14. public string StandortStrasse { get; set; }
  15. public string StandortPlz { get; set; }
  16. public string StandortOrt { get; set; }
  17. public DateTime? StandortDatum { get; set; }
  18. public MissingReport() : this("", "", "", "", "", "", "", null, null, null) {
  19. }
  20. public MissingReport(string anrede, string vorname, string nachname, string mail, string personPLZ,
  21. string personOrt, string personStrasse, int? typId, int? markeId, int? farbeId) {
  22. this.Anrede = anrede;
  23. this.Vorname = vorname;
  24. this.Nachname = nachname;
  25. this.Mail = mail;
  26. this.PersonPLZ = personPLZ;
  27. this.PersonOrt = personOrt;
  28. this.PersonStrasse = personStrasse;
  29. this.TypId = typId;
  30. this.MarkeId = markeId;
  31. this.FarbeId = farbeId;
  32. }
  33. }
  34. }