27 lines
1.1 KiB
C#
27 lines
1.1 KiB
C#
using System;
|
|
|
|
namespace Kreta.DataAccessManual.ParameterClasses
|
|
{
|
|
public class FelmentesSearchPco
|
|
{
|
|
public int? ID { get; set; }
|
|
public string TanuloNeve { get; set; }
|
|
public int? TanuloOsztalyId { get; set; }
|
|
public int? TantargyId { get; set; }
|
|
public DateTime? KezdeteDateFrom { get; set; }
|
|
public DateTime? KezdeteDateTo { get; set; }
|
|
public DateTime? VegeDateFrom { get; set; }
|
|
public DateTime? VegeDateTo { get; set; }
|
|
public int? IsTanoraLatogatasaAloli { get; set; }
|
|
public int? IsErtekelesAloli { get; set; }
|
|
public int? IsSzovegesenErtekelheto { get; set; }
|
|
public string FelmentesOka { get; set; }
|
|
public DateTime? RogzitesDateFrom { get; set; }
|
|
public DateTime? RogzitesDateTo { get; set; }
|
|
public string RogzitoNeve { get; set; }
|
|
public DateTime? ModositasDateFrom { get; set; }
|
|
public DateTime? ModositasDateTo { get; set; }
|
|
public string ModositoNeve { get; set; }
|
|
public bool? Torolt { get; set; }
|
|
}
|
|
}
|