47 lines
1.1 KiB
C#
47 lines
1.1 KiB
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace Kreta.BusinessLogic.HelperClasses
|
|
{
|
|
public class EnaploAdatszolgaltatasCO
|
|
{
|
|
public int? ID { get; set; }
|
|
|
|
public bool? HasznalENaplot { get; set; }
|
|
|
|
public bool? HasznalPapirNaplot { get; set; }
|
|
|
|
public bool? HasznalEEllenorzot { get; set; }
|
|
|
|
public int? ENaploTipus { get; set; }
|
|
|
|
public int? ENaploInfra { get; set; }
|
|
|
|
public int? SzerzodesOsszege { get; set; }
|
|
|
|
public int? ForrasTipusa { get; set; }
|
|
|
|
public string SzerzodoNeve { get; set; }
|
|
|
|
public int? SzerzodoPozicio { get; set; }
|
|
|
|
public DateTime? SzerzodesKezdete { get; set; }
|
|
|
|
public DateTime? SzerzodesVege { get; set; }
|
|
|
|
public bool? VanHonlap { get; set; }
|
|
|
|
public string HonlapUrl { get; set; }
|
|
|
|
public MemoryStream SzerzodesFile { get; set; }
|
|
|
|
//Nevesítések
|
|
public string ENaploTipusNev { get; set; }
|
|
|
|
public string ENaploInfraNev { get; set; }
|
|
|
|
public string ForrasTipusaNev { get; set; }
|
|
|
|
public string SzerzodoPozicioNev { get; set; }
|
|
}
|
|
}
|