示例#1
0
		public DataValidatingEventArgs(T tObj, TList tList, IImportExportConfiguration export)
		{
			Cancel = false;
			Entity = tObj;
			EntityList = tList;
			Configuration = export;
		}
示例#2
0
		public SourceDataValidatingEventArgs(T row, TList sheet, IImportExportConfiguration import)
		{
			Cancel = false;
			this.Row = row;
			this.Sheet = sheet;
			Configuration = import;
		}