init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
23
Kreta.BusinessLogic/HelperClasses/FelHelyValasztoItemCo.cs
Normal file
23
Kreta.BusinessLogic/HelperClasses/FelHelyValasztoItemCo.cs
Normal file
|
@ -0,0 +1,23 @@
|
|||
using System.Data;
|
||||
using Kreta.BusinessLogic.Classes;
|
||||
using Kreta.Core;
|
||||
|
||||
namespace Kreta.BusinessLogic.HelperClasses
|
||||
{
|
||||
public class FelHelyValasztoItemCo
|
||||
{
|
||||
public FelHelyValasztoItemCo() { }
|
||||
public FelHelyValasztoItemCo(DataRow dataRow)
|
||||
{
|
||||
MukodesiHelyID = SDAConvert.ToInt32(dataRow["MukodesiHelyID"]);
|
||||
FelhelyId = SDAConvert.ToInt32(dataRow["FelhelyId"]);
|
||||
MukodesiHelyNev = SDAConvert.ToString(dataRow["MukodesiHelyNev"]).ReplaceMultipleSpacesAndTrim();
|
||||
FelhelyNev = SDAConvert.ToString(dataRow["FelhelyName"]).ReplaceMultipleSpacesAndTrim();
|
||||
}
|
||||
|
||||
public int MukodesiHelyID { get; set; }
|
||||
public int FelhelyId { get; set; }
|
||||
public string MukodesiHelyNev { get; set; }
|
||||
public string FelhelyNev { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue