init
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
using System;
|
||||
|
||||
namespace Kreta.Ellenorzo.Dao.VN.FeltoltottFajl
|
||||
{
|
||||
public class FileKeresesRequestDao
|
||||
{
|
||||
public int? FeladatKategoriaId { get; set; }
|
||||
|
||||
public int? FeladatEllatasiHelyId { get; set; }
|
||||
|
||||
public DateTime? DatumTol { get; set; }
|
||||
|
||||
public DateTime? DatumIg { get; set; }
|
||||
|
||||
public int? TanarHelyettesitoId { get; set; }
|
||||
|
||||
public int? OsztalyCsoportId { get; set; }
|
||||
|
||||
public int? TantargyId { get; set; }
|
||||
|
||||
public string FajlNeve { get; set; }
|
||||
|
||||
public int? FoglalkozasId { get; set; }
|
||||
|
||||
public int? OrarendiOraId { get; set; }
|
||||
|
||||
public int? OrarendiOraGroupId { get; set; }
|
||||
|
||||
public int? TanitasiOraId { get; set; }
|
||||
|
||||
public int OraFileTipusId { get; set; }
|
||||
|
||||
public int? IsOnlineOra { get; set; }
|
||||
}
|
||||
}
|
||||
+50
@@ -0,0 +1,50 @@
|
||||
using System;
|
||||
using Kreta.Core.CustomAttributes;
|
||||
|
||||
namespace Kreta.Ellenorzo.Dao.VN.FeltoltottFajl
|
||||
{
|
||||
public class FileKeresesResponseDao
|
||||
{
|
||||
[ColumnName("ID")]
|
||||
public int Id { get; set; }
|
||||
|
||||
[ColumnName("FileID")]
|
||||
public int FileId { get; set; }
|
||||
|
||||
[ColumnName("KepNeve")]
|
||||
public string Nev { get; set; }
|
||||
|
||||
[ColumnName("Megjegyzes")]
|
||||
public string Megjegyzes { get; set; }
|
||||
|
||||
[ColumnName("Datum")]
|
||||
public DateTime FeltoltesDatuma { get; set; }
|
||||
|
||||
[ColumnName("FajlUrl")]
|
||||
public string Utvonal { get; set; }
|
||||
|
||||
[ColumnName("FajlKiterjesztes")]
|
||||
public string Kiterjesztes { get; set; }
|
||||
|
||||
[ColumnName("GUID")]
|
||||
public Guid Guid { get; set; }
|
||||
|
||||
[ColumnName("OrarendiOraId")]
|
||||
public int? OrarendiOraId { get; set; }
|
||||
|
||||
[ColumnName("TanitasiOraId")]
|
||||
public int? TanitasiOraId { get; set; }
|
||||
|
||||
[ColumnName("Megjelenitett")]
|
||||
public bool Megjelenitett { get; set; }
|
||||
|
||||
[ColumnName("OsztalyCsoport")]
|
||||
public string OsztalyCsoportNev { get; set; }
|
||||
|
||||
[ColumnName("Tantargy")]
|
||||
public string TantargyNev { get; set; }
|
||||
|
||||
[ColumnName("TanarHelyettesito")]
|
||||
public string TanarNev { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user