init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,8 @@
|
|||
using Kreta.Web.Areas.ImportExport.Models.CommonModels;
|
||||
|
||||
namespace Kreta.Web.Areas.ImportExport.Models.NebuloImportExport
|
||||
{
|
||||
public class NebuloImportExportModel : BaseImportExportModel
|
||||
{
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
using Kreta.Web.Areas.ImportExport.Models.CommonModels;
|
||||
|
||||
namespace Kreta.Web.Areas.ImportExport.Models.NebuloImportExport
|
||||
{
|
||||
public class NebuloImportInfoModel
|
||||
{
|
||||
public ImportInfoSummaryListModel ImportInfoSummaryList { get; set; }
|
||||
|
||||
public NebuloImportItemListModel MainImportItemList { get; set; }
|
||||
|
||||
public NebuloImportNemImportalhatoItemListModel NemImportalhatoItemList { get; set; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace Kreta.Web.Areas.ImportExport.Models.NebuloImportExport
|
||||
{
|
||||
public class NebuloImportItemListModel
|
||||
{
|
||||
public List<NebuloImportItemModel> ImportItemModelList { get; set; } = new List<NebuloImportItemModel>();
|
||||
}
|
||||
}
|
|
@ -0,0 +1,26 @@
|
|||
using System;
|
||||
using Kreta.BusinessLogic.Classes;
|
||||
using Kreta.Enums.ManualEnums.ImportExport;
|
||||
using Kreta.Web.Security;
|
||||
|
||||
namespace Kreta.Web.Areas.ImportExport.Models.NebuloImportExport
|
||||
{
|
||||
public class NebuloImportItemModel
|
||||
{
|
||||
public string SzuletesiVezeteknev { get; set; }
|
||||
|
||||
public string SzuletesiKeresztnev { get; set; }
|
||||
|
||||
public string AnyjaVezeteknev { get; set; }
|
||||
|
||||
public string AnyjaKeresztnev { get; set; }
|
||||
|
||||
public string SzuletesiHely { get; set; }
|
||||
|
||||
public DateTime? SzuletesiIdo { get; set; }
|
||||
public string SzuletesiIdoText => SzuletesiIdo?.ToString(Core.Constants.ToStringPattern.HungarianDate) ?? "-";
|
||||
|
||||
public int Operation { get; set; }
|
||||
public string OperationText => Operation.GetDisplayName<ImportItemOperationEnum>(ClaimData.SelectedTanevID.Value);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace Kreta.Web.Areas.ImportExport.Models.NebuloImportExport
|
||||
{
|
||||
public class NebuloImportNemImportalhatoItemListModel
|
||||
{
|
||||
public List<NebuloImportNemImportalhatoItemModel> NemImportalhatoItemModelList { get; set; } = new List<NebuloImportNemImportalhatoItemModel>();
|
||||
|
||||
public int NebuloImportTipus { get; set; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,113 @@
|
|||
namespace Kreta.Web.Areas.ImportExport.Models.NebuloImportExport
|
||||
{
|
||||
public class NebuloImportNemImportalhatoItemModel
|
||||
{
|
||||
public string FenntartoAzonositoImportData { get; set; }
|
||||
|
||||
public string FenntartoMegnevezeseImportData { get; set; }
|
||||
|
||||
public string ErvenyesKotelezettsegTipusaImportData { get; set; }
|
||||
|
||||
public string OktatasiAzonositoSzamImportData { get; set; }
|
||||
|
||||
public string ViseltElonevImportData { get; set; }
|
||||
|
||||
public string ViseltVezeteknevImportData { get; set; }
|
||||
|
||||
public string ViseltKeresztnevImportData { get; set; }
|
||||
|
||||
public string ViseltNevNevsorrendImportData { get; set; }
|
||||
|
||||
public string SzuletesiElonevImportData { get; set; }
|
||||
|
||||
public string SzuletesiVezeteknevImportData { get; set; }
|
||||
|
||||
public string SzuletesiKeresztnevImportData { get; set; }
|
||||
|
||||
public string SzuletesiNevNevsorrendImportData { get; set; }
|
||||
|
||||
public string AnyjaNeveElonevImportData { get; set; }
|
||||
|
||||
public string AnyjaNeveVezeteknevImportData { get; set; }
|
||||
|
||||
public string AnyjaNeveKeresztnevImportData { get; set; }
|
||||
|
||||
public string AnyjaNeveNevsorrendImportData { get; set; }
|
||||
|
||||
public string SzuletesiIdoImportData { get; set; }
|
||||
|
||||
public string SzuletesiTelepulesImportData { get; set; }
|
||||
|
||||
public string TartozkodasiCimOrszagImportData { get; set; }
|
||||
|
||||
public string TartozkodasiCimTelepulesImportData { get; set; }
|
||||
|
||||
public string TartozkodasiCimIranyitoszamImportData { get; set; }
|
||||
|
||||
public string TartozkodasiCimKozteruletNevImportData { get; set; }
|
||||
|
||||
public string TartozkodasiCimKozteruletJellegImportData { get; set; }
|
||||
|
||||
public string TartozkodasiCimHazszamImportData { get; set; }
|
||||
|
||||
public string TartozkodasiCimPontositasImportData { get; set; }
|
||||
|
||||
public string AllandoLakcimOrszagImportData { get; set; }
|
||||
|
||||
public string AllandoLakcimTelepulesImportData { get; set; }
|
||||
|
||||
public string AllandoLakcimIranyitoszamImportData { get; set; }
|
||||
|
||||
public string AllandoLakcimKozteruletNevImportData { get; set; }
|
||||
|
||||
public string AllandoLakcimKozteruletJellegImportData { get; set; }
|
||||
|
||||
public string AllandoLakcimHazszamImportData { get; set; }
|
||||
|
||||
public string AllandoLakcimPontositasImportData { get; set; }
|
||||
|
||||
public string ErvenyesKotelezettsegKezdeteImportData { get; set; }
|
||||
|
||||
public string ErvenyesKotelezettsegVegeImportData { get; set; }
|
||||
|
||||
public string HalasztasJogcimeImportData { get; set; }
|
||||
|
||||
public string HalasztastEngedelyezoSzervTipusaImportData { get; set; }
|
||||
|
||||
public string HalasztastEngedelyezoSzervMegnevezeseImportData { get; set; }
|
||||
|
||||
public string HalasztasHatalyaVegdatumaImportData { get; set; }
|
||||
|
||||
public string KotelezettseghezKapcsolodoAktivVagySzuneteloJogviszonyaImportData { get; set; }
|
||||
|
||||
public string KotelezettseghezKapcsolodoJogviszonyTipusaImportData { get; set; }
|
||||
|
||||
public string KotelezettseghezKapcsolodoJogviszonyStatuszaImportData { get; set; }
|
||||
|
||||
public string KotelezettseghezKapcsolodoJogviszonyIntezmenyOmAzonositojaImportData { get; set; }
|
||||
|
||||
public string KotelezettseghezKapcsolodoJogviszonyIntezmenyNeveImportData { get; set; }
|
||||
|
||||
public string KotelezettseghezKapcsolodoJogviszonyUgyviteliHelySorszamaImportData { get; set; }
|
||||
|
||||
public string KotelezettseghezKapcsolodoJogviszonyUgyviteliHelyAzonositojaImportData { get; set; }
|
||||
|
||||
public string KotelezettseghezKapcsolodoJogviszonyUgyviteliHelyNeveImportData { get; set; }
|
||||
|
||||
public string KotelezettseghezKapcsolodoJogviszonyUgyviteliHelyCimeImportData { get; set; }
|
||||
|
||||
public string KotelezettseghezKapcsolodoJogviszonyKezdeteImportData { get; set; }
|
||||
|
||||
public string KotelezettseghezKapcsolodoJogviszonySzunetelesenekKezdeteImportData { get; set; }
|
||||
|
||||
public string KotelezettseghezKapcsolodoJogviszonySzunetelesenekVarhatoVegeImportData { get; set; }
|
||||
|
||||
public string KotelezettseghezKapcsolodoJogviszonySzunetelesJogcimeImportData { get; set; }
|
||||
|
||||
public string KotelezettsegetAzIlletekesFenntartohozTartozoIntezmenybenTeljesitiImportData { get; set; }
|
||||
|
||||
public string AzUtolsoKotelezettsegetTeljesitoJogviszonyVegdatumaImportData { get; set; }
|
||||
|
||||
public string ErrorList { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue