PWA Fundvelo der Caritas.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

MissingReport.cs 1.3KB

123456789101112131415161718192021222324252627282930313233
  1. namespace cwebplusApp.Shared.Models {
  2. public class MissingReport : Report {
  3. public string Mail { get; set; } // required
  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 float 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 MissingReport() : this("", "", "", "", "", "", "", -1, -1, -1) {
  15. }
  16. public MissingReport(string anrede, string vorname, string nachname, string mail, string personPLZ,
  17. string personOrt, string personStrasse, int typId, int markeId, int farbeId) {
  18. this.Anrede = anrede;
  19. this.Vorname = vorname;
  20. this.Nachname = nachname;
  21. this.Mail = mail;
  22. this.PersonPLZ = personPLZ;
  23. this.PersonOrt = personOrt;
  24. this.PersonStrasse = personStrasse;
  25. this.TypId = typId;
  26. this.MarkeId = markeId;
  27. this.FarbeId = farbeId;
  28. }
  29. }
  30. }