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.EszkozImportExport
|
||||
{
|
||||
public class EszkozImportExportModel : BaseImportExportModel
|
||||
{
|
||||
}
|
||||
}
|
|
@ -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; }
|
||||
}
|
||||
}
|
|
@ -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>();
|
||||
}
|
||||
}
|
|
@ -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);
|
||||
}
|
||||
}
|
|
@ -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>();
|
||||
}
|
||||
}
|
|
@ -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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue