29 lines
935 B
C#
29 lines
935 B
C#
using System;
|
|
using System.Data;
|
|
using Kreta.BusinessLogic.Classes;
|
|
using Kreta.Core;
|
|
|
|
namespace Kreta.BusinessLogic.HelperClasses
|
|
{
|
|
public class AlkalmazottTanmenetItemCo
|
|
{
|
|
public AlkalmazottTanmenetItemCo(DataRow dataRow)
|
|
{
|
|
Id = SDAConvert.ToString(dataRow["ID"]);
|
|
OsztalyCsoport = SDAConvert.ToString(dataRow["OsztalyCsoport"]).ReplaceMultipleSpacesAndTrim();
|
|
Tantargy = SDAConvert.ToString(dataRow["Tantargy"]).ReplaceMultipleSpacesAndTrim();
|
|
Oraszam = SDAConvert.ToString(dataRow["Oraszam"]).ReplaceMultipleSpacesAndTrim();
|
|
Tema = SDAConvert.ToString(dataRow["Tema"]).ReplaceMultipleSpacesAndTrim();
|
|
}
|
|
|
|
public string Id { get; set; }
|
|
|
|
public string OsztalyCsoport { get; set; }
|
|
|
|
public string Tantargy { get; set; }
|
|
|
|
public string Oraszam { get; set; }
|
|
|
|
public string Tema { get; set; }
|
|
}
|
|
}
|