init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue