init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
44
Kreta.BusinessLogic/HelperClasses/IgazolasCO.cs
Normal file
44
Kreta.BusinessLogic/HelperClasses/IgazolasCO.cs
Normal file
|
@ -0,0 +1,44 @@
|
|||
using System;
|
||||
using Kreta.DataAccess.Interfaces;
|
||||
|
||||
namespace Kreta.BusinessLogic.HelperClasses
|
||||
{
|
||||
public class IgazolasCO
|
||||
{
|
||||
public IgazolasCO()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public IgazolasCO(IIgazolas entity)
|
||||
{
|
||||
ID = entity.ID;
|
||||
|
||||
ErvKezdete = entity.Kezdete;
|
||||
ErvVege = entity.Vege;
|
||||
IgazolasTipus = entity.IgazolasTipusa;
|
||||
Megjegyzes = entity.Megjegyzes;
|
||||
TanuloId = entity.TanuloId;
|
||||
TanuloNev = entity.Tanulo.NyomtatasiNev;
|
||||
RogzitoId = entity.RogzitoId;
|
||||
RogzitoNev = entity.Rogzito.NyomtatasiNev;
|
||||
RogzDatum = entity.RogzitesDatuma;
|
||||
Ugyiratszam = entity.Ugyiratszam;
|
||||
}
|
||||
|
||||
public DateTime ErvKezdete { get; set; }
|
||||
public DateTime ErvVege { get; set; }
|
||||
public int? IgazolasTipus { get; set; }
|
||||
public string Megjegyzes { get; set; }
|
||||
public int TanuloId { get; set; }
|
||||
public string TanuloNev { get; set; }
|
||||
public int RogzitoId { get; set; }
|
||||
public string RogzitoNev { get; set; }
|
||||
public int? ID { get; set; }
|
||||
public DateTime RogzDatum { get; set; }
|
||||
public int OsztCsop { get; set; }
|
||||
public string OsztCsopNev { get; set; }
|
||||
public string Ugyiratszam { get; set; }
|
||||
public int? SzervezetId { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue