PWA Fundvelo der Caritas.
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
| 123456789101112131415161718192021222324 |
- using cwebplusApp.Shared.Models;
-
- namespace cwebplusApp.Shared.Services {
- public class ReportDataProvider {
-
- public Report Report { get; set; }
-
-
- public FoundReport GetFoundReport() {
- if (Report is FoundReport) {
- return (FoundReport)Report;
- }
- return null;
- }
-
- public MissingReport GetLostReport() {
- if (Report is MissingReport) {
- return (MissingReport)Report;
- }
- return null;
- }
-
- }
- }
|