init
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Data;
|
||||
using Kreta.BusinessLogic.Classes;
|
||||
using Kreta.Core;
|
||||
|
||||
namespace Kreta.BusinessLogic.HelperClasses
|
||||
{
|
||||
public class AlkalmazottEszkozItemCo
|
||||
{
|
||||
public AlkalmazottEszkozItemCo(DataRow dataRow)
|
||||
{
|
||||
Id = SDAConvert.ToString(dataRow["ID"]);
|
||||
Nev = SDAConvert.ToString(dataRow["Nev"]).ReplaceMultipleSpacesAndTrim();
|
||||
Darab = SDAConvert.ToString(dataRow["Darab"]).ReplaceMultipleSpacesAndTrim();
|
||||
Tipus_DNAME = SDAConvert.ToString(dataRow["Tipus_DNAME"]).ReplaceMultipleSpacesAndTrim();
|
||||
}
|
||||
|
||||
public string Id { get; set; }
|
||||
|
||||
public string Nev { get; set; }
|
||||
|
||||
public string Darab { get; set; }
|
||||
|
||||
public string Tipus_DNAME { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user