init
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
namespace Kreta.BusinessLogic.HelperClasses.OsztalyCsoportbaSorolas
|
||||
{
|
||||
public class CsoportListItem
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Nev { get; set; }
|
||||
public int? OsztalybontasId { get; set; }
|
||||
public string OsztalyNev { get; set; }
|
||||
public OsztalybaSorolasDDLItem ConvertToDDLItem()
|
||||
{
|
||||
return new OsztalybaSorolasDDLItem()
|
||||
{
|
||||
Text = Nev,
|
||||
Value = Id.ToString(),
|
||||
FilterId = OsztalybontasId,
|
||||
Group = ""
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user