init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,31 @@
|
|||
using System;
|
||||
using System.Data;
|
||||
using Kreta.BusinessLogic.Classes;
|
||||
using Kreta.Core;
|
||||
|
||||
namespace Kreta.BusinessLogic.HelperClasses
|
||||
{
|
||||
public class BesorolasTobbesModTanuloValidationItemCo
|
||||
{
|
||||
public BesorolasTobbesModTanuloValidationItemCo() { }
|
||||
|
||||
public BesorolasTobbesModTanuloValidationItemCo(DataRow dataRow)
|
||||
{
|
||||
Id = SDAConvert.ToInt32(dataRow["Id"]); //TanuloCsoportId
|
||||
Nev = SDAConvert.ToString(dataRow["Nev"]).ReplaceMultipleSpacesAndTrim();
|
||||
KilepesDatum = SDAConvert.ToDateTime(dataRow["KilepesDatum"]);
|
||||
TanuloId = SDAConvert.ToInt32(dataRow["TanuloId"]);
|
||||
OsztalyCsoportId = SDAConvert.ToInt32(dataRow["OsztalyCsoportId"]);
|
||||
}
|
||||
|
||||
public int Id { get; set; } //TanuloCsoportId
|
||||
|
||||
public string Nev { get; set; }
|
||||
|
||||
public DateTime? KilepesDatum { get; set; }
|
||||
|
||||
public int TanuloId { get; set; }
|
||||
|
||||
public int OsztalyCsoportId { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue