This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

@ -0,0 +1,8 @@
using Kreta.Web.Areas.ImportExport.Models.CommonModels;
namespace Kreta.Web.Areas.ImportExport.Models.EszkozImportExport
{
public class EszkozImportExportModel : BaseImportExportModel
{
}
}

View file

@ -0,0 +1,13 @@
using Kreta.Web.Areas.ImportExport.Models.CommonModels;
namespace Kreta.Web.Areas.ImportExport.Models.EszkozImportExport
{
public class EszkozImportInfoModel
{
public ImportInfoSummaryListModel ImportInfoSummaryList { get; set; }
public EszkozImportItemListModel MainImportItemList { get; set; }
public EszkozImportNemImportalhatoItemListModel NemImportalhatoItemList { get; set; }
}
}

View file

@ -0,0 +1,9 @@
using System.Collections.Generic;
namespace Kreta.Web.Areas.ImportExport.Models.EszkozImportExport
{
public class EszkozImportItemListModel
{
public List<EszkozImportItemModel> ImportItemModelList { get; set; } = new List<EszkozImportItemModel>();
}
}

View file

@ -0,0 +1,24 @@
using Kreta.BusinessLogic.Classes;
using Kreta.Enums.ManualEnums.ImportExport;
using Kreta.Web.Security;
namespace Kreta.Web.Areas.ImportExport.Models.EszkozImportExport
{
public class EszkozImportItemModel
{
public string Nev { get; set; }
public string TeremNev { get; set; }
public string TipusNev { get; set; }
public string Darabszam { get; set; }
public string FelelosNev { get; set; }
public string LeltariSzam { get; set; }
public int Operation { get; set; }
public string OperationText => Operation.GetDisplayName<ImportItemOperationEnum>(ClaimData.SelectedTanevID.Value);
}
}

View file

@ -0,0 +1,9 @@
using System.Collections.Generic;
namespace Kreta.Web.Areas.ImportExport.Models.EszkozImportExport
{
public class EszkozImportNemImportalhatoItemListModel
{
public List<EszkozImportNemImportalhatoItemModel> NemImportalhatoItemModelList { get; set; } = new List<EszkozImportNemImportalhatoItemModel>();
}
}

View file

@ -0,0 +1,19 @@
namespace Kreta.Web.Areas.ImportExport.Models.EszkozImportExport
{
public class EszkozImportNemImportalhatoItemModel
{
public string EszkozNeveImportData { get; set; }
public string HelyisegImportData { get; set; }
public string EszkozTipusImportData { get; set; }
public string DarabszamImportData { get; set; }
public string EszkozSzemelyiFeleloseImportData { get; set; }
public string LeltariSzamImportData { get; set; }
public string ErrorList { get; set; }
}
}