kreta/Kreta.BusinessLogic/HelperClasses/BeszerzesiIgenyCo.cs
2024-03-13 00:33:46 +01:00

48 lines
1.8 KiB
C#

namespace Kreta.BusinessLogic.HelperClasses
{
public class BeszerzesiIgenyCo
{
public int? BeszerzesiIgenyId { get; set; }
public int? RogzitoId { get; set; }
//Anyag
public int? AnyagId { get; set; }
public string AnyagMegnevezes { get; set; }
public string AnyagSAPKod { get; set; }
public string ERAAzonosito { get; set; }
public int? AnyagMennyisegiEgysegId { get; set; }
public string AnyagRovidLeiras { get; set; }
//Tétel
public string AnyagTetelMegnevezes { get; set; }
public int? AnyagTetelEgysegar { get; set; }
public int? AnyagTetelMennyiseg { get; set; }
public int? AnyagTetelMennyisegiEgysegId { get; set; }
//Pályázat
public bool IsPalyazat { get; set; }
public string PalyazatAzonosito { get; set; }
public bool IsBVOP { get; set; }
public bool IsKEF { get; set; }
public bool IsNKOH { get; set; }
//Szállító
public int? SzallitoId { get; set; }
public int? FizetesiMod { get; set; }
public string SzallitoSAPKod { get; set; }
public string SzallitoNev { get; set; }
public string Iranyitoszam { get; set; }
public string HelysegNev { get; set; }
public string KozteruletNev { get; set; }
public int? KozteruletJellegeId { get; set; }
public string Hazszam { get; set; }
public string Emelet { get; set; }
public string Ajto { get; set; }
public string Adoszam { get; set; }
public string KepviseloNev { get; set; }
public string EmailCim { get; set; }
public string Telefonszam { get; set; }
//Megjegyzés
public string Megjegyzes { get; set; }
}
}