init
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user