using Ease.Core.Model; using System; using System.Collections.Generic; using System.Data; namespace HRM.BO { public class DataUploadColumnDefinitionVM { #region Declarations public DataUploadColumnDefinitionVM() { //_sheetName = string.Empty; //_columnName = new List(); //_SheetCollection = new List(); //_dataType = new List(); //_allowNull = new List(); //_itemOneCombo = null; //_itemTwoCombo = null; //_itemThreeDate = null; //_selectedItemOneID = (0); //_selectedItemTwoID = (0); //_selectedItemOneText = String.Empty; //_itemThreeSelectedDate = DateTime.Today; SheetCollection= new List(); ColumnName = new List(); DataType = new List(); } #endregion #region Property #region Property SheetName : String public string SheetName { get; set; } #endregion #region Property SheetCollection : Collection public List SheetCollection { get; set; } #endregion #region Property ColumnName : Collection public List ColumnName { get; set; } #endregion #region Property DataType : Collection public List DataType { get;set; } #endregion //#region Property AllowNull : Collection //private List _allowNull; //public List AllowNull //{ // get { return _allowNull; } // set { _allowNull = value; } //} //#endregion //#region Property Item One : string //private string _itemOneComboText; //public string ItemOneComboText //{ // get { return _itemOneComboText; } // set { _itemOneComboText = value; } //} //#endregion //#region Property Item One : Collection //private Dictionary _itemOneCombo; //public Dictionary ItemOneComboData //{ // get { return _itemOneCombo; } // set { _itemOneCombo = value; } //} //#endregion //#region Property Item One Selected Value : ID //private int _selectedItemOneID; //public int SelectedItemOneID //{ // get { return _selectedItemOneID; } // set { _selectedItemOneID = value; } //} //#endregion //#region Property Item One Selected Text : ID //private string _selectedItemOneText; //public string SelectedItemOneText //{ // get { return _selectedItemOneText; } // set { _selectedItemOneText = value; } //} //#endregion //#region Property Item Two Text : string //private string _itemTwoComboText; //public string ItemTwoComboText //{ // get { return _itemTwoComboText; } // set { _itemTwoComboText = value; } //} //#endregion //#region Property Item Two : Collection //private Dictionary _itemTwoCombo; //public Dictionary ItemTwoComboData //{ // get { return _itemTwoCombo; } // set { _itemTwoCombo = value; } //} //#endregion //#region Property Item Two Selected Value : ID //private int _selectedItemTwoID; //public int SelectedItemTwoID //{ // get { return _selectedItemTwoID; } // set { _selectedItemTwoID = value; } //} //#endregion //#region Property Item Three Text : string //private string _itemThreeDateText; //public string ItemThreeDateText //{ // get { return _itemThreeDateText; } // set { _itemThreeDateText = value; } //} //#endregion //#region Property Item Three : Collection //private DateTime? _itemThreeDate; //public DateTime? ItemThreeDateData //{ // get { return _itemThreeDate; } // set { _itemThreeDate = value; } //} //#endregion //#region Property Item Three Selected Value: DateTime //private DateTime? _itemThreeSelectedDate; //public DateTime? ItemThreeSelectedDate //{ // get { return _itemThreeSelectedDate; } // set { _itemThreeSelectedDate = value; } //} //#endregion #region Property From Text : string public string FormText { get; set; } #endregion #endregion } }