Exemplo n.º 1
0
 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;
 }
Exemplo n.º 2
0
 public ResolveReportViewModel(BaseReportViewModel viewModel)
 {
     ReportId     = viewModel.ReportId;
     ReportStatus = viewModel.ReportStatus;
 }
Exemplo n.º 3
0
 public ExpandedReportExpandedReviewViewModel(BaseReportViewModel viewModel) : base(viewModel)
 {
 }