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