init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
26
Kreta.BusinessLogic/HelperClasses/AlkalmazottEszkozItemCo.cs
Normal file
26
Kreta.BusinessLogic/HelperClasses/AlkalmazottEszkozItemCo.cs
Normal file
|
@ -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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue