init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
28
Kreta.BusinessLogic/Classes/MobileApi/Naplo/V2/Constant.cs
Normal file
28
Kreta.BusinessLogic/Classes/MobileApi/Naplo/V2/Constant.cs
Normal file
|
@ -0,0 +1,28 @@
|
|||
namespace Kreta.BusinessLogic.Classes.MobileApi.Naplo.V2
|
||||
{
|
||||
using System.Collections.Generic;
|
||||
using Kreta.BusinessLogic.Classes.MobileApi.Naplo.V2.Enum;
|
||||
using Kreta.Resources;
|
||||
|
||||
public static class Constant
|
||||
{
|
||||
private static readonly Dictionary<JavasoltJelenletTemplateType, string> megjegyzesByJavasoltJelenletTemplateTypeDictionary = new Dictionary<JavasoltJelenletTemplateType, string>
|
||||
{
|
||||
{ JavasoltJelenletTemplateType.Igazolas, NaploApiResource.ATanulonakIgazolasLettRogzitve },
|
||||
{ JavasoltJelenletTemplateType.ElozoOranHianyzott, NaploApiResource.ElozoOranHianyzott },
|
||||
{ JavasoltJelenletTemplateType.ParhuzamosOranNaplozott, NaploApiResource.ParuzamosOranMarNaploztak },
|
||||
{ JavasoltJelenletTemplateType.Felmentes, NaploApiResource.ATanulonakFelmenteseVan },
|
||||
{ JavasoltJelenletTemplateType.SzakmaiGyakorlat, NaploApiResource.SzakmaiGyakorlatonJelenlevo },
|
||||
{ JavasoltJelenletTemplateType.JogviszonySzuneteltetes, NaploApiResource.JogviszonySzunetelteto },
|
||||
{ JavasoltJelenletTemplateType.MagantanuloOralatogatasAloliMentesseg, NaploApiResource.Magantanulo }
|
||||
};
|
||||
|
||||
public static string GetMegjegyzesByJavasoltJelenletTemplateType(JavasoltJelenletTemplateType tipus)
|
||||
{
|
||||
return megjegyzesByJavasoltJelenletTemplateTypeDictionary.TryGetValue(tipus, out string value) ? value : null;
|
||||
}
|
||||
|
||||
public static readonly int FeltolthetoFajlokMaxSzama = 25;
|
||||
public static readonly string DateTimeFormat = "yyyyMMdd_HHmm";
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue