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