Ejemplo n.º 1
0
 public CSVMappingAttribute(string strController, string strScreen, string strLabelName, int intSequenceNo, eValueOutputFormat outputFormat)
 {
     this.Controller        = strController;
     this.Screen            = strScreen;
     this.LabelName         = strLabelName;
     this.SequenceNo        = intSequenceNo;
     this.ValueOutputFormat = outputFormat;
 }
Ejemplo n.º 2
0
 public CSVMappingAttribute(string strHeaderName, int intSequenceNo, eDefaultValue displayDefaultValue = eDefaultValue.None, eValueOutputFormat outputFormat = eValueOutputFormat.Default)
 {
     this.HeaderName          = strHeaderName;
     this.SequenceNo          = intSequenceNo;
     this.DisplayDefaultValue = displayDefaultValue;
     this.ValueOutputFormat   = outputFormat;
 }