示例#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;
 }
示例#2
0
 public ResolveReportViewModel(BaseReportViewModel viewModel)
 {
     ReportId     = viewModel.ReportId;
     ReportStatus = viewModel.ReportStatus;
 }
示例#3
0
 public ExpandedReportExpandedReviewViewModel(BaseReportViewModel viewModel) : base(viewModel)
 {
 }