init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,64 @@
|
|||
using System;
|
||||
using System.Data;
|
||||
using Kreta.BusinessLogic.Classes;
|
||||
using Kreta.Core;
|
||||
|
||||
namespace Kreta.BusinessLogic.HelperClasses
|
||||
{
|
||||
public class NemElerhetoOrarendiElemItemCo
|
||||
{
|
||||
public NemElerhetoOrarendiElemItemCo() { }
|
||||
|
||||
public NemElerhetoOrarendiElemItemCo(DataRow dataRow)
|
||||
{
|
||||
Id = SDAConvert.ToInt32(dataRow["Id"]).ToString();
|
||||
ErvenyessegKezdete = SDAConvert.ToDateTime(dataRow["ErvenyessegKezdete"]);
|
||||
ErvenyessegVege = SDAConvert.ToDateTime(dataRow["ErvenyessegVege"]);
|
||||
Tanar = SDAConvert.ToString(dataRow["Tanar"]).ReplaceMultipleSpacesAndTrim();
|
||||
TanarId = SDAConvert.ToInt32(dataRow["TanarId"]);
|
||||
TanarElotagNelkul = SDAConvert.ToString(dataRow["TanarElotagNelkul"]).ReplaceMultipleSpacesAndTrim();
|
||||
OsztalyCsoport = SDAConvert.ToString(dataRow["OsztalyCsoport"]).ReplaceMultipleSpacesAndTrim();
|
||||
OsztalyCsoportId = SDAConvert.ToInt32(dataRow["OsztalyCsoportId"]);
|
||||
Tantargy = SDAConvert.ToString(dataRow["Tantargy"]).ReplaceMultipleSpacesAndTrim();
|
||||
TantargyId = SDAConvert.ToInt32(dataRow["TantargyId"]);
|
||||
Hetirend = SDAConvert.ToString(dataRow["Hetirend"]).ReplaceMultipleSpacesAndTrim();
|
||||
HetirendId = SDAConvert.ToInt32(dataRow["HetirendId"]);
|
||||
Nap = SDAConvert.ToString(dataRow["Nap"]).ReplaceMultipleSpacesAndTrim();
|
||||
NapId = SDAConvert.ToInt32(dataRow["NapId"]);
|
||||
Terem = SDAConvert.ToString(dataRow["Terem"]).ReplaceMultipleSpacesAndTrim();
|
||||
TeremId = SDAConvert.ToInt32(dataRow["TeremId"]);
|
||||
}
|
||||
|
||||
public string Id { get; set; }
|
||||
|
||||
public DateTime? ErvenyessegKezdete { get; set; }
|
||||
|
||||
public DateTime? ErvenyessegVege { get; set; }
|
||||
|
||||
public string Tanar { get; set; }
|
||||
|
||||
public int TanarId { get; set; }
|
||||
|
||||
public string TanarElotagNelkul { get; set; }
|
||||
|
||||
public string OsztalyCsoport { get; set; }
|
||||
|
||||
public int OsztalyCsoportId { get; set; }
|
||||
|
||||
public string Tantargy { get; set; }
|
||||
|
||||
public int TantargyId { get; set; }
|
||||
|
||||
public string Hetirend { get; set; }
|
||||
|
||||
public int HetirendId { get; set; }
|
||||
|
||||
public string Nap { get; set; }
|
||||
|
||||
public int NapId { get; set; }
|
||||
|
||||
public string Terem { get; set; }
|
||||
|
||||
public int TeremId { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue