init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,25 @@
|
|||
using System;
|
||||
using System.Data;
|
||||
using Kreta.BusinessLogic.Classes;
|
||||
using Kreta.Core;
|
||||
|
||||
namespace Kreta.BusinessLogic.HelperClasses
|
||||
{
|
||||
public class NevOktLeNemKotottMunkaidoItemHelyettesitesCO
|
||||
{
|
||||
public NevOktLeNemKotottMunkaidoItemHelyettesitesCO(DataRow row)
|
||||
{
|
||||
ID = SDAConvert.ToInt32(row["ID"]);
|
||||
Kezdete = SDAConvert.ToDateTime(row["Kezdete"]);
|
||||
Vege = SDAConvert.ToDateTime(row["Vege"]);
|
||||
TanarId = SDAConvert.ToInt32(row["TanarId"]);
|
||||
Megtartott = SDAConvert.ToBooleanFromTF(row["Megtartott"]);
|
||||
}
|
||||
|
||||
public int ID { get; set; }
|
||||
public DateTime? Kezdete { get; set; }
|
||||
public DateTime? Vege { get; set; }
|
||||
public int TanarId { get; set; }
|
||||
public bool Megtartott { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue