This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

@ -0,0 +1,50 @@
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; }
}
}