28 lines
943 B
C#
28 lines
943 B
C#
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; }
|
|
}
|
|
}
|