init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue