| 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 GetMissingReport() {
- if (Report is MissingReport) {
- return (MissingReport)Report;
- }
- return null;
- }
-
- }
- }
|