init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,26 @@
|
|||
using System;
|
||||
using Kreta.Core.CustomAttributes;
|
||||
|
||||
namespace Kreta.Ellenorzo.Dao.VN.Intezmeny.Hetirend
|
||||
{
|
||||
public class OrarendiResponseDao
|
||||
{
|
||||
[ColumnName("ID")]
|
||||
public int Id { get; set; }
|
||||
|
||||
[ColumnName("HetSorszama")]
|
||||
public int HetSorszama { get; set; }
|
||||
|
||||
[ColumnName("HetKezdoNapja")]
|
||||
public DateTime KezdoNapDatuma { get; set; }
|
||||
|
||||
[ColumnName("HetUtolsoNapja")]
|
||||
public DateTime VegNapDatuma { get; set; }
|
||||
|
||||
[ColumnName("Hetirend")]
|
||||
public int? HetirendId { get; set; }
|
||||
|
||||
[ColumnName("Hetirend_DNAME")]
|
||||
public string HetirendNev { get; set; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
using Kreta.Core.CustomAttributes;
|
||||
|
||||
namespace Kreta.Ellenorzo.Dao.VN.Intezmeny.Rendszermodul
|
||||
{
|
||||
public class RendszermodulListResponseDao
|
||||
{
|
||||
[ColumnName("C_ALAPKRETA")]
|
||||
public bool AlapKreta { get; set; }
|
||||
|
||||
[ColumnName("C_KRETAESL")]
|
||||
public bool KretaEsl { get; set; }
|
||||
|
||||
[ColumnName("C_KRETAEUGYINTEZES")]
|
||||
public bool KretaEugyintezes { get; set; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,41 @@
|
|||
using System;
|
||||
using Kreta.Core.CustomAttributes;
|
||||
|
||||
namespace Kreta.Ellenorzo.Dao.VN.Intezmeny.TanevRendje
|
||||
{
|
||||
public class TanevRendjeResponseDao
|
||||
{
|
||||
[ColumnName("Datum")]
|
||||
public DateTime Datum { get; set; }
|
||||
|
||||
[ColumnName("HetNapja")]
|
||||
public int? HetNapjaId { get; set; }
|
||||
|
||||
[ColumnName("HetNapja_DNAME")]
|
||||
public string HetNapjaNev { get; set; }
|
||||
|
||||
[ColumnName("ID")]
|
||||
public int Id { get; set; }
|
||||
|
||||
[ColumnName("Global")]
|
||||
public bool IsMindenOsztalyraVonatkozik { get; set; }
|
||||
|
||||
[ColumnName("OrarendiNap")]
|
||||
public bool IsOrarendiNap { get; set; }
|
||||
|
||||
[ColumnName("NapTip_DNAME")]
|
||||
public string NapTipusNeve { get; set; }
|
||||
|
||||
[ColumnName("NapTip")]
|
||||
public int NapTipusId { get; set; }
|
||||
|
||||
[ColumnName("Hetirend_DNAME")]
|
||||
public string HetirendNeve { get; set; }
|
||||
|
||||
[ColumnName("Hetirend")]
|
||||
public int HetirendId { get; set; }
|
||||
|
||||
[ColumnName("OsztalyCsoportId")]
|
||||
public int? OsztalyCsoportId { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue