init
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user