init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,27 @@
|
|||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Kreta.BusinessLogic.Logic.Naplozas.Elokeszites;
|
||||
using Kreta.Resources;
|
||||
|
||||
namespace Kreta.Web.Areas.Orarend.Models
|
||||
{
|
||||
public class SzamonkeresElorejelzesNaplozas
|
||||
{
|
||||
public int? GroupId { get; set; }
|
||||
public int? OsztalyCsoportId { get; set; }
|
||||
public DateTime? Datum { get; set; }
|
||||
|
||||
[Display(Name = nameof(OrarendResource.SzamonkeresMegnevezes), ResourceType = typeof(OrarendResource))]
|
||||
public string Megnevezes { get; set; }
|
||||
|
||||
[Display(Name = nameof(OrarendResource.ErtekelesMod), ResourceType = typeof(OrarendResource))]
|
||||
public int? ErtekelesModId { get; set; }
|
||||
|
||||
public void Fill(NaplozasElokeszitesModel model)
|
||||
{
|
||||
GroupId = model.OraAdat.GroupId;
|
||||
OsztalyCsoportId = model.OraAdat.OsztalyCsoportId;
|
||||
Datum = model.OraAdat.OraKezdete.Date;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue