init
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
using System;
|
||||
using System.Data;
|
||||
using Kreta.BusinessLogic.Classes;
|
||||
using Kreta.Core;
|
||||
|
||||
namespace Kreta.BusinessLogic.HelperClasses
|
||||
{
|
||||
public class AlkalmazottErtekelesItemCo
|
||||
{
|
||||
public AlkalmazottErtekelesItemCo(DataRow dataRow)
|
||||
{
|
||||
Id = SDAConvert.ToString(dataRow["ID"]);
|
||||
Tantargy = SDAConvert.ToString(dataRow["Tantargy"]).ReplaceMultipleSpacesAndTrim();
|
||||
Tanulo = SDAConvert.ToString(dataRow["Tanulo"]).ReplaceMultipleSpacesAndTrim();
|
||||
Datum = SDAConvert.ToDateTime(dataRow["Datum"]);
|
||||
Tema = SDAConvert.ToString(dataRow["Tema"]).ReplaceMultipleSpacesAndTrim();
|
||||
Osztalyzat_DNAME = SDAConvert.ToString(dataRow["Osztalyzat_DNAME"]).ReplaceMultipleSpacesAndTrim();
|
||||
ErtekelesSzoveg = SDAConvert.ToString(dataRow["ErtekelesSzoveg"]).ReplaceMultipleSpacesAndTrim();
|
||||
Tipus_DNAME = SDAConvert.ToString(dataRow["Tipus_DNAME"]).ReplaceMultipleSpacesAndTrim();
|
||||
OsztalyCsoport = SDAConvert.ToString(dataRow["OsztalyCsoport"]).ReplaceMultipleSpacesAndTrim();
|
||||
}
|
||||
|
||||
public string Id { get; set; }
|
||||
|
||||
public string Tantargy { get; set; }
|
||||
|
||||
public string Tanulo { get; set; }
|
||||
|
||||
public DateTime? Datum { get; set; }
|
||||
|
||||
public string Tema { get; set; }
|
||||
|
||||
public string Osztalyzat_DNAME { get; set; }
|
||||
|
||||
public string ErtekelesSzoveg { get; set; }
|
||||
|
||||
public string Tipus_DNAME { get; set; }
|
||||
|
||||
public string OsztalyCsoport { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user