init
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
using Kreta.Core.CustomAttributes;
|
||||
|
||||
namespace Kreta.Ellenorzo.Dao.VN.OsztalyCsoport.Osztaly
|
||||
{
|
||||
public class OsztalyTanuloResponseDao
|
||||
{
|
||||
[ColumnName("ID")]
|
||||
public int Id { get; set; }
|
||||
|
||||
[ColumnName("OsztalyCsoportId")]
|
||||
public int OsztalyCsoportId { get; set; }
|
||||
}
|
||||
}
|
||||
+53
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using Kreta.Core.CustomAttributes;
|
||||
|
||||
namespace Kreta.Ellenorzo.Dao.VN.OsztalyCsoport
|
||||
{
|
||||
public class TanuloOsztalyCsoportResponseDao
|
||||
{
|
||||
[ColumnName("FeladatKategoriaId")]
|
||||
public int OktatasNevelesiKategoriaId { get; set; }
|
||||
|
||||
[ColumnName("FeladatKategoriaId_DNAME")]
|
||||
public string OktatasNevelesiKategoriaNeve { get; set; }
|
||||
|
||||
[ColumnName("OktatasiNevelesiFeladatId")]
|
||||
public int OktatasiNevelesiFeladatId { get; set; }
|
||||
|
||||
[ColumnName("OktatasiNevelesiFeladatId_DNAME")]
|
||||
public string OktatasiNevelesiFeladatNeve { get; set; }
|
||||
|
||||
[ColumnName("OsztalyCsoportId")]
|
||||
public int Id { get; set; }
|
||||
|
||||
[ColumnName("Nev")]
|
||||
public string Nev { get; set; }
|
||||
|
||||
[ColumnName("ErvKezd")]
|
||||
public DateTime ErvenyessegKezdete { get; set; }
|
||||
|
||||
[ColumnName("ErvVeg")]
|
||||
public DateTime? ErvenyessegVege { get; set; }
|
||||
|
||||
[ColumnName("IsCsoport")]
|
||||
public bool IsCsoport { get; set; }
|
||||
|
||||
[ColumnName("OsztalyfonokId")]
|
||||
public int? OsztalyfonokId { get; set; }
|
||||
|
||||
[ColumnName("OsztalyfonokHelyettesId")]
|
||||
public int? OsztalyfonokHelyettesId { get; set; }
|
||||
|
||||
[ColumnName("EvfolyamTipus")]
|
||||
public int? EvfolyamTipusId { get; set; }
|
||||
|
||||
[ColumnName("CsoportTipus")]
|
||||
public int? CsoportTipus { get; set; }
|
||||
|
||||
[ColumnName("TanuloId")]
|
||||
public int TanuloId { get; set; }
|
||||
|
||||
[ColumnName("IsTanoraiCeluCsoportTipus")]
|
||||
public bool? IsTanoraiCeluCsoportTipus { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user