init
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
using System.Data;
|
||||
using Kreta.BusinessLogic.Classes;
|
||||
using Kreta.Core;
|
||||
|
||||
namespace Kreta.BusinessLogic.HelperClasses
|
||||
{
|
||||
public class AlkalmazottFoglalkozasItemCo
|
||||
{
|
||||
public AlkalmazottFoglalkozasItemCo(DataRow dataRow)
|
||||
{
|
||||
Id = SDAConvert.ToString(dataRow["ID"]);
|
||||
Tantargy = SDAConvert.ToString(dataRow["Tantargy"]).ReplaceMultipleSpacesAndTrim();
|
||||
OsztalyCsoport = SDAConvert.ToString(dataRow["OsztalyCsoport"]).ReplaceMultipleSpacesAndTrim();
|
||||
HetiOraszam = SDAConvert.ToInt32(dataRow["HetiOraszam"]);
|
||||
Foglalkozas_DNAME = SDAConvert.ToString(dataRow["Foglalkozas_DNAME"]).ReplaceMultipleSpacesAndTrim();
|
||||
}
|
||||
|
||||
public string Id { get; set; }
|
||||
|
||||
public string Tantargy { get; set; }
|
||||
|
||||
public string OsztalyCsoport { get; set; }
|
||||
|
||||
public int HetiOraszam { get; set; }
|
||||
|
||||
public string Foglalkozas_DNAME { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user