31 lines
1.1 KiB
C#
31 lines
1.1 KiB
C#
using System.Data;
|
|
using Kreta.BusinessLogic.Classes;
|
|
using Kreta.Core;
|
|
|
|
namespace Kreta.BusinessLogic.HelperClasses
|
|
{
|
|
public class AlkalmazottElerhetosegTelefonItemCo
|
|
{
|
|
public AlkalmazottElerhetosegTelefonItemCo(DataRow dataRow)
|
|
{
|
|
Id = SDAConvert.ToString(dataRow["ID"]);
|
|
Type_DNAME = SDAConvert.ToString(dataRow["Type_DNAME"]).ReplaceMultipleSpacesAndTrim();
|
|
Phone = SDAConvert.ToString(dataRow["Phone"]).ReplaceMultipleSpacesAndTrim();
|
|
IsPublic_BOOL = SDAConvert.ToBoolean(dataRow["IsPublic_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 Phone { get; set; }
|
|
|
|
public bool Alapertelmezett_BOOL { get; set; }
|
|
|
|
public bool IsPublic_BOOL { get; set; }
|
|
|
|
public string Alapertelmezett_BNAME { get; set; }
|
|
}
|
|
}
|