init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,34 @@
|
|||
using System.Data;
|
||||
using Kreta.BusinessLogic.Classes;
|
||||
using Kreta.Core;
|
||||
|
||||
namespace Kreta.BusinessLogic.HelperClasses
|
||||
{
|
||||
public class AlkalmazottElerhetosegEmailItemCo
|
||||
{
|
||||
public AlkalmazottElerhetosegEmailItemCo(DataRow dataRow)
|
||||
{
|
||||
Id = SDAConvert.ToString(dataRow["ID"]);
|
||||
Type_DNAME = SDAConvert.ToString(dataRow["Type_DNAME"]).ReplaceMultipleSpacesAndTrim();
|
||||
Email = SDAConvert.ToString(dataRow["Email"]).ReplaceMultipleSpacesAndTrim();
|
||||
IsPublic_BOOL = SDAConvert.ToBoolean(dataRow["IsPublic_BOOL"]);
|
||||
IsHibasanMegadva_BOOL = SDAConvert.ToBoolean(dataRow["IsHibasanMegadva_BOOL"]);
|
||||
Alapertelmezett_BOOL = SDAConvert.ToBoolean(dataRow["Alapertelmezett_BOOL"]);
|
||||
Alapertelmezett_BNAME = SDAConvert.ToString(dataRow["Alapertelmezett_BNAME"]).ReplaceMultipleSpacesAndTrim();
|
||||
}
|
||||
|
||||
public string Id { get; set; }
|
||||
|
||||
public string Type_DNAME { get; set; }
|
||||
|
||||
public string Email { get; set; }
|
||||
|
||||
public bool Alapertelmezett_BOOL { get; set; }
|
||||
|
||||
public bool IsPublic_BOOL { get; set; }
|
||||
|
||||
public bool IsHibasanMegadva_BOOL { get; set; }
|
||||
|
||||
public string Alapertelmezett_BNAME { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue