public BaseReportViewModel(BaseReportViewModel report) { ReportId = report.ReportId; ReviewReportedId = report.ReviewReportedId; ReportingUserId = report.ReportingUserId; UserReportedId = report.UserReportedId; ReportedOn = report.ReportedOn; ResolvedOn = report.ResolvedOn; ReportReason = report.ReportReason; ReportStatus = report.ReportStatus; }
public ResolveReportViewModel(BaseReportViewModel viewModel) { ReportId = viewModel.ReportId; ReportStatus = viewModel.ReportStatus; }
public ExpandedReportExpandedReviewViewModel(BaseReportViewModel viewModel) : base(viewModel) { }