init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
22
Kreta.BusinessLogic/HelperClasses/DualisEntityCo.cs
Normal file
22
Kreta.BusinessLogic/HelperClasses/DualisEntityCo.cs
Normal file
|
@ -0,0 +1,22 @@
|
|||
using System.Data;
|
||||
using Kreta.BusinessLogic.Classes;
|
||||
|
||||
namespace Kreta.BusinessLogic.HelperClasses
|
||||
{
|
||||
public class DualisEntityCo
|
||||
{
|
||||
public DualisEntityCo() { }
|
||||
|
||||
public DualisEntityCo(DataRow dataRow)
|
||||
{
|
||||
ID = SDAConvert.ToInt32(dataRow["SzervezetId"]);
|
||||
EntitasNev = SDAConvert.ToString(dataRow["EntitasNev"]);
|
||||
Darabszam = SDAConvert.ToInt32(dataRow["cnt"]);
|
||||
}
|
||||
|
||||
public int? ID { get; set; }
|
||||
public string EntitasNev { get; set; }
|
||||
public int Darabszam { get; set; }
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue