23 lines
770 B
C#
23 lines
770 B
C#
using System.Data;
|
|
using Kreta.BusinessLogic.Classes;
|
|
using Kreta.Core;
|
|
|
|
namespace Kreta.BusinessLogic.HelperClasses
|
|
{
|
|
public class VegzettsegItemCo
|
|
{
|
|
public VegzettsegItemCo(DataRow dataRow)
|
|
{
|
|
Id = SDAConvert.ToInt32(dataRow["Id"]);
|
|
Vegzettseg_DNAME = SDAConvert.ToString(dataRow["Vegzettseg_DNAME"]).ReplaceMultipleSpacesAndTrim();
|
|
Kepesites = SDAConvert.ToString(dataRow["Kepesites"]).ReplaceMultipleSpacesAndTrim();
|
|
Egyeb = SDAConvert.ToString(dataRow["Egyeb"]).ReplaceMultipleSpacesAndTrim();
|
|
}
|
|
|
|
public int Id { get; set; }
|
|
public string Vegzettseg_DNAME { get; set; }
|
|
public string Kepesites { get; set; }
|
|
public string Egyeb { get; set; }
|
|
|
|
}
|
|
}
|