Added a default column mode for the procedure

Logic to use the default column mode set in the format
Created a default column mode for the procedure
This commit is contained in:
2015-11-02 21:31:47 +00:00
parent 0f3c0bb5f1
commit e1d596e85f
4 changed files with 22 additions and 1 deletions

View File

@@ -2935,6 +2935,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _PMode, "@PMode");
}
}
private LazyLoad<int?> _ColumnMode;
public int? ColumnMode
{
get
{
return LazyLoad(ref _ColumnMode, "@ColumnMode");
}
}
private LazyLoad<int?> _MaxRNO;
public int? MaxRNO
{