PrintGridModel.cs 728 B

1234567891011121314151617181920212223242526272829
  1. using DevExpress.XtraReports.UI;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Web;
  6. namespace GreenTree.Nachtragsmanagement.Web.Models.Global
  7. {
  8. public class PrintGridModel
  9. {
  10. public PrintGridModel()
  11. {
  12. }
  13. public PrintGridModel(XtraReport report, string controller, string action, string gridViewName)
  14. {
  15. Report = report;
  16. Controller = controller;
  17. Action = action;
  18. GridViewName = gridViewName;
  19. }
  20. public XtraReport Report { get; set; }
  21. public string Controller { get; set; }
  22. public string Action { get; set; }
  23. public string GridViewName { get; set; }
  24. }
  25. }