35 lines
1.2 KiB
C#
35 lines
1.2 KiB
C#
using System;
|
|
using System.Data;
|
|
using Kreta.BusinessLogic.Classes;
|
|
using Kreta.Core;
|
|
|
|
namespace Kreta.BusinessLogic.HelperClasses
|
|
{
|
|
public class AlkalmazottMegtartottTanoraItemCo
|
|
{
|
|
public AlkalmazottMegtartottTanoraItemCo(DataRow dataRow)
|
|
{
|
|
Id = SDAConvert.ToString(dataRow["ID"]);
|
|
OsztalyCsoport = SDAConvert.ToString(dataRow["OsztalyCsoport"]).ReplaceMultipleSpacesAndTrim();
|
|
Tantargy = SDAConvert.ToString(dataRow["Tantargy"]).ReplaceMultipleSpacesAndTrim();
|
|
Tema = SDAConvert.ToString(dataRow["Tema"]).ReplaceMultipleSpacesAndTrim();
|
|
Helyett_BNAME = SDAConvert.ToString(dataRow["Helyett_BNAME"]).ReplaceMultipleSpacesAndTrim();
|
|
Datum = SDAConvert.ToDateTime(dataRow["Datum"]);
|
|
Oraszam = SDAConvert.ToInt32(dataRow["Oraszam"]);
|
|
}
|
|
|
|
public string Id { get; set; }
|
|
|
|
public string OsztalyCsoport { get; set; }
|
|
|
|
public string Tantargy { get; set; }
|
|
|
|
public string Tema { get; set; }
|
|
|
|
public string Helyett_BNAME { get; set; }
|
|
|
|
public DateTime? Datum { get; set; }
|
|
|
|
public int Oraszam { get; set; }
|
|
}
|
|
}
|