| 1234567891011121314151617181920212223242526272829 |
- using DevExpress.XtraReports.UI;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace GreenTree.Nachtragsmanagement.Web.Models.Global
- {
- public class PrintGridModel
- {
- public PrintGridModel()
- {
- }
- public PrintGridModel(XtraReport report, string controller, string action, string gridViewName)
- {
- Report = report;
- Controller = controller;
- Action = action;
- GridViewName = gridViewName;
- }
- public XtraReport Report { get; set; }
- public string Controller { get; set; }
- public string Action { get; set; }
- public string GridViewName { get; set; }
- }
- }
|