init
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
using System.Data;
|
||||
using Kreta.Core;
|
||||
|
||||
namespace Kreta.BusinessLogic.HelperClasses.AmiTorzslapCOs
|
||||
{
|
||||
public class KozosAdatokCo
|
||||
{
|
||||
public KozosAdatokCo(DataRow row)
|
||||
{
|
||||
OsztalyId = row.Field<int>("OsztalyId");
|
||||
OsztalyNeve = row.Field<string>("OsztalyNeve").ReplaceMultipleSpacesAndTrim();
|
||||
TanevNeve = row.Field<string>("TanevNeve").ReplaceMultipleSpacesAndTrim();
|
||||
OMKod = row.Field<string>("OMKod").ReplaceMultipleSpacesAndTrim();
|
||||
SzekhelyVaros = row.Field<string>("SzekhelyVaros").ReplaceMultipleSpacesAndTrim();
|
||||
}
|
||||
|
||||
public int OsztalyId { get; set; }
|
||||
public string OsztalyNeve { get; set; }
|
||||
public string TanevNeve { get; set; }
|
||||
public string OMKod { get; set; }
|
||||
public string SzekhelyVaros { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user