init
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using Kreta.BusinessLogic.Interfaces;
|
||||
using Kreta.Web.Attributes;
|
||||
|
||||
namespace Kreta.Web.Areas.OsztalyCsoport.Models
|
||||
{
|
||||
public class IgazolasGridModel : IKretaIdentity
|
||||
{
|
||||
public string ID { get; set; }
|
||||
|
||||
[KretaDisplayName(20)] /*Tanuló*/
|
||||
public string Nev { get; set; }
|
||||
|
||||
[KretaDisplayName(2633)] /*Igazolási időszak kezdete*/
|
||||
public DateTime? Kezdete { get; set; }
|
||||
|
||||
[KretaDisplayName(2618)] /*Igazolási időszak vége*/
|
||||
public DateTime? Vege { get; set; }
|
||||
|
||||
[KretaDisplayName(456)] /*Pedagógus*/
|
||||
public string Rogzito { get; set; }
|
||||
|
||||
[KretaDisplayName(485)] /*Igazolás típusa*/
|
||||
public string IgazolasTipusa_DNAME { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user