init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,39 @@
|
|||
using System;
|
||||
using System.Data;
|
||||
using Kreta.BusinessLogic.Classes;
|
||||
using Kreta.Core;
|
||||
|
||||
namespace Kreta.BusinessLogic.HelperClasses.MulasztasiErtesitokCOs
|
||||
{
|
||||
public class MulasztasAdatCo
|
||||
{
|
||||
public MulasztasAdatCo(DataRow row)
|
||||
{
|
||||
TanuloId = SDAConvert.ToInt32(row.Field<int>("TanuloId"));
|
||||
TanuloCsoportId = SDAConvert.ToInt32(row.Field<int>("TanuloCsoportId"));
|
||||
OsztalyCsoportId = SDAConvert.ToInt32(row.Field<int>("OsztalyCsoportId"));
|
||||
OsztalyCsoportNeve = SDAConvert.ToString(row.Field<string>("OsztalyCsoportNev")).ReplaceMultipleSpacesAndTrim();
|
||||
Tipusa = SDAConvert.ToString(row.Field<string>("Tipusa")).ReplaceMultipleSpacesAndTrim();
|
||||
Igazolt = SDAConvert.ToBooleanFromTF(row.Field<string>("Igazolt"));
|
||||
IgazolasTipusa = SDAConvert.ToString(row.Field<string>("IgazolasTipusa")).ReplaceMultipleSpacesAndTrim();
|
||||
KesesPercben = SDAConvert.ToInt32(row.Field<int?>("KesesPercben"));
|
||||
Datum = SDAConvert.ToDateTime(row.Field<DateTime>("Datum")).Value;
|
||||
Oraszam = SDAConvert.ToString(row.Field<string>("Oraszam")).ReplaceMultipleSpacesAndTrim();
|
||||
TantargyId = SDAConvert.ToInt32(row.Field<int>("TantargyId"));
|
||||
TantargyNeve = SDAConvert.ToString(row.Field<string>("TantargyNev")).ReplaceMultipleSpacesAndTrim();
|
||||
}
|
||||
|
||||
public int TanuloId { get; set; }
|
||||
public int TanuloCsoportId { get; set; }
|
||||
public int OsztalyCsoportId { get; set; }
|
||||
public string OsztalyCsoportNeve { get; set; }
|
||||
public string Tipusa { get; set; }
|
||||
public bool Igazolt { get; set; }
|
||||
public string IgazolasTipusa { get; set; }
|
||||
public int? KesesPercben { get; set; }
|
||||
public DateTime Datum { get; set; }
|
||||
public string Oraszam { get; set; }
|
||||
public int TantargyId { get; set; }
|
||||
public string TantargyNeve { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue