50 lines
1.2 KiB
C#
50 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Kreta.DataAccessManual.ParameterClasses
|
|
{
|
|
public class DolgozatokAtlagaSearchPco
|
|
{
|
|
public int? OsztalyCsoport { get; set; }
|
|
|
|
public int? Tantargy { get; set; }
|
|
|
|
public string ErtekelesTemaja { get; set; }
|
|
|
|
public List<int> ErtekelesModList { get; set; }
|
|
|
|
public int? TanarId { get; set; }
|
|
|
|
public double? AtlagTol { get; set; }
|
|
|
|
public double? AtlagIg { get; set; }
|
|
|
|
public int? Erdemjegy5Tol { get; set; }
|
|
|
|
public int? Erdemjegy5Ig { get; set; }
|
|
|
|
public int? Erdemjegy4Tol { get; set; }
|
|
|
|
public int? Erdemjegy4Ig { get; set; }
|
|
|
|
public int? Erdemjegy3Tol { get; set; }
|
|
|
|
public int? Erdemjegy3Ig { get; set; }
|
|
|
|
public int? Erdemjegy2Tol { get; set; }
|
|
|
|
public int? Erdemjegy2Ig { get; set; }
|
|
|
|
public int? Erdemjegy1Tol { get; set; }
|
|
|
|
public int? Erdemjegy1Ig { get; set; }
|
|
|
|
public int? NemIrtDolgozatotTol { get; set; }
|
|
|
|
public int? NemIrtDolgozatotIg { get; set; }
|
|
|
|
public int? SzuperOsztalyfonok { get; set; }
|
|
|
|
public DateTime? Datum { get; set; }
|
|
}
|
|
}
|