init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,10 @@
|
|||
namespace Kreta.Ellenorzo.Enums
|
||||
{
|
||||
public enum FelhasznaloSzerepkor
|
||||
{
|
||||
Tanulo,
|
||||
Gondviselo,
|
||||
Tanar,
|
||||
Adminisztrator
|
||||
}
|
||||
}
|
|
@ -0,0 +1,76 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{E8717728-75CA-4F4A-B23D-53C593FF0840}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>Kreta.Ellenorzo.Enums</RootNamespace>
|
||||
<AssemblyName>Kreta.Ellenorzo.Enums</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<Deterministic>true</Deterministic>
|
||||
<TargetFrameworkProfile />
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
||||
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.ComponentModel.DataAnnotations" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\..\..\Tools\SharedAssemblyInfo.cs">
|
||||
<Link>Properties\SharedAssemblyInfo.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="VN\Adatszotar.cs" />
|
||||
<Compile Include="VN\ErtekelesekTipusEnum.cs" />
|
||||
<Compile Include="VN\CsatolmanyTipus.cs" />
|
||||
<Compile Include="VN\DefaultInterval.cs" />
|
||||
<Compile Include="VN\ErtekelesErtekFajta.cs" />
|
||||
<Compile Include="VN\MagatartasSzorgalomTantargy.cs" />
|
||||
<Compile Include="VN\OsztalyCsoportTipus.cs" />
|
||||
<Compile Include="VN\IgazolasAllapota.cs" />
|
||||
<Compile Include="FelhasznaloSzerepkor.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="VN\MulasztasMod.cs" />
|
||||
<Compile Include="VN\MulasztasTipus.cs" />
|
||||
<Compile Include="VN\MockUserName.cs" />
|
||||
<Compile Include="VN\RendszermodulTipus.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\Kreta.Enums\Kreta.Enums.csproj">
|
||||
<Project>{1D5E0AC2-DFAB-4D32-9AD1-B5788A7D06BD}</Project>
|
||||
<Name>Kreta.Enums</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
|
@ -0,0 +1 @@
|
|||
|
|
@ -0,0 +1,8 @@
|
|||
namespace Kreta.Ellenorzo.Enums.VN
|
||||
{
|
||||
public enum Adatszotar
|
||||
{
|
||||
IsmeretlenErtek,
|
||||
AdatszotarElem
|
||||
}
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Kreta.Ellenorzo.Enums.VN
|
||||
{
|
||||
public enum CsatolmanyTipus
|
||||
{
|
||||
None = 0,
|
||||
[Display(Name = "Csatolmany")]
|
||||
Csatolmany
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
namespace Kreta.Ellenorzo.Enums.VN
|
||||
{
|
||||
public enum DefaultInterval
|
||||
{
|
||||
None,
|
||||
AktivTanev
|
||||
}
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Kreta.Ellenorzo.Enums.VN
|
||||
{
|
||||
public enum ErtekelesErtekFajta
|
||||
{
|
||||
None,
|
||||
[Display(Name = "Elégtelen (1) és Jeles (5) között az öt alapértelmezett érték")]
|
||||
Osztalyzat = 1,
|
||||
[Display(Name = "Szöveges értékelés")]
|
||||
Szoveges = 2,
|
||||
[Display(Name = "Százalékos értékelés")]
|
||||
Szazalekos = 3,
|
||||
[Display(Name = "Rossz, Változó, Jó, Példás")]
|
||||
MagatartasErtek = 4,
|
||||
[Display(Name = "Hanyag, Változó, Jó, Példás")]
|
||||
SzorgalomErtek = 5
|
||||
}
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Kreta.Ellenorzo.Enums.VN
|
||||
{
|
||||
public enum ErtekelesekTipusEnum
|
||||
{
|
||||
None = 0,
|
||||
[Display(Name = "Minden értékelés típus")]
|
||||
MindenErtekelesTipus,
|
||||
[Display(Name = "Bizonyítvány típusú értékelések")]
|
||||
BizonyitvanyErtekelesTipus,
|
||||
[Display(Name = "Nem bizonyítvány típusú értékelések")]
|
||||
NemBizonyitvanyErtekelesTipus
|
||||
}
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Kreta.Ellenorzo.Enums.VN
|
||||
{
|
||||
public enum IgazolasAllapota
|
||||
{
|
||||
[Display(Name = "Nem definiált")]
|
||||
None,
|
||||
[Display(Name = "Igazolt mulasztás")]
|
||||
Igazolt,
|
||||
[Display(Name = "Igazolatlan mulasztás")]
|
||||
Igazolatlan,
|
||||
[Display(Name = "Igazolandó mulasztás")]
|
||||
Igazolando
|
||||
}
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Kreta.Ellenorzo.Enums.VN
|
||||
{
|
||||
public enum MagatartasSzorgalomTantargy
|
||||
{
|
||||
[Display(Name = "Nem definiált")]
|
||||
None = 0,
|
||||
[Display(Name = "Magatartás")]
|
||||
Magatartas,
|
||||
[Display(Name = "Szorgalom")]
|
||||
Szorgalom
|
||||
}
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
namespace Kreta.Ellenorzo.Enums.VN
|
||||
{
|
||||
public enum MockUserName
|
||||
{
|
||||
None,
|
||||
Antali,
|
||||
Gondviselo
|
||||
}
|
||||
}
|
|
@ -0,0 +1,17 @@
|
|||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Kreta.Ellenorzo.Enums.VN
|
||||
{
|
||||
/// <summary>
|
||||
/// Tanorai = Ha a tanóra Osztály, vagy Csoport (iskolai célú)
|
||||
/// TanoranKivuli = Ha más, akkor ez
|
||||
/// </summary>
|
||||
public enum MulasztasMod
|
||||
{
|
||||
None = 0,
|
||||
[Display(Name = "Tanórai mulasztás")]
|
||||
Tanorai,
|
||||
[Display(Name = "Tanórán kívüli mulasztás")]
|
||||
TanoranKivuli
|
||||
}
|
||||
}
|
|
@ -0,0 +1,21 @@
|
|||
using System.ComponentModel.DataAnnotations;
|
||||
using Kreta.Enums;
|
||||
|
||||
namespace Kreta.Ellenorzo.Enums.VN
|
||||
{
|
||||
public enum MulasztasTipus
|
||||
{
|
||||
[Display(Name = "Nem definiált")]
|
||||
None = 0,
|
||||
[Display(Name = "Nem definiált")]
|
||||
Na = MulasztasTipusEnum.na,
|
||||
[Display(Name = "A tanuló részt vett a tanórán")]
|
||||
Jelenlet = MulasztasTipusEnum.jelenlet,
|
||||
[Display(Name = "A tanuló késett a tanóráról")]
|
||||
Keses = MulasztasTipusEnum.keses,
|
||||
[Display(Name = "A tanuló hiányzott a tanóráról")]
|
||||
Hianyzas = MulasztasTipusEnum.hianyzas,
|
||||
[Display(Name = "A tanuló nem kellett, hogy részt vegyen a tanórán")]
|
||||
Ures = MulasztasTipusEnum.ures
|
||||
}
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
namespace Kreta.Ellenorzo.Enums.VN
|
||||
{
|
||||
public enum OsztalyCsoportTipus
|
||||
{
|
||||
None = 0,
|
||||
Osztaly,
|
||||
Csoport
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
namespace Kreta.Ellenorzo.Enums.VN
|
||||
{
|
||||
public enum RendszermodulTipus
|
||||
{
|
||||
None,
|
||||
Eugyintezes,
|
||||
KretaEsl,
|
||||
AlapKreta,
|
||||
LEP,
|
||||
FeltarGondviselo,
|
||||
FeltarAszf
|
||||
}
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Meziantou.Analyzer" version="1.0.688" targetFramework="net48" developmentDependency="true" />
|
||||
</packages>
|
Loading…
Add table
Add a link
Reference in a new issue