rename to projecting
This commit is contained in:
@@ -1,9 +1,9 @@
|
|||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio Version 17
|
# Visual Studio Version 17
|
||||||
VisualStudioVersion = 17.0.32112.339
|
VisualStudioVersion = 17.0.32112.339
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EveryThing", "EveryThing\EveryThing.csproj", "{E6B6526C-7DF2-4F89-8305-26BAF6E52292}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ProjecThing", "ProjecThing\ProjecThing.csproj", "{E6B6526C-7DF2-4F89-8305-26BAF6E52292}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
@@ -1,18 +1,18 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Models;
|
using ProjecThing.Models;
|
||||||
using EveryThing.Models.Transport;
|
using ProjecThing.Models.Transport;
|
||||||
using EveryThing.Models.Vehicle;
|
using ProjecThing.Models.Vehicle;
|
||||||
using Microsoft.AspNetCore.Identity;
|
using Microsoft.AspNetCore.Identity;
|
||||||
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
using EveryThing.Models.Invoice;
|
using ProjecThing.Models.Invoice;
|
||||||
using EveryThing.Models.Project;
|
using ProjecThing.Models.Project;
|
||||||
|
|
||||||
namespace EveryThing.Data
|
namespace ProjecThing.Data
|
||||||
{
|
{
|
||||||
public class ApplicationDbContext : IdentityDbContext<IdentityApplicationUser, IdentityApplicationRole, int>
|
public class ApplicationDbContext : IdentityDbContext<IdentityApplicationUser, IdentityApplicationRole, int>
|
||||||
{
|
{
|
||||||
@@ -7,16 +7,16 @@ EXPOSE 443
|
|||||||
|
|
||||||
FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build
|
FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build
|
||||||
WORKDIR /src
|
WORKDIR /src
|
||||||
COPY ["EveryThing/EveryThing.csproj", "EveryThing/"]
|
COPY ["ProjecThing/ProjecThing.csproj", "ProjecThing/"]
|
||||||
RUN dotnet restore "EveryThing/EveryThing.csproj"
|
RUN dotnet restore "ProjecThing/ProjecThing.csproj"
|
||||||
COPY . .
|
COPY . .
|
||||||
WORKDIR "/src/EveryThing"
|
WORKDIR "/src/ProjecThing"
|
||||||
RUN dotnet build "EveryThing.csproj" -c Release -o /app/build
|
RUN dotnet build "ProjecThing.csproj" -c Release -o /app/build
|
||||||
|
|
||||||
FROM build AS publish
|
FROM build AS publish
|
||||||
RUN dotnet publish "EveryThing.csproj" -c Release -o /app/publish
|
RUN dotnet publish "ProjecThing.csproj" -c Release -o /app/publish
|
||||||
|
|
||||||
FROM base AS final
|
FROM base AS final
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY --from=publish /app/publish .
|
COPY --from=publish /app/publish .
|
||||||
ENTRYPOINT ["dotnet", "EveryThing.dll"]
|
ENTRYPOINT ["dotnet", "ProjecThing.dll"]
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<key id="b71cc079-14ad-4082-8ae8-df61e7444549" version="1">
|
||||||
|
<creationDate>2026-05-06T11:57:13.5764649Z</creationDate>
|
||||||
|
<activationDate>2026-05-06T11:57:13.5007041Z</activationDate>
|
||||||
|
<expirationDate>2026-08-04T11:57:13.5007041Z</expirationDate>
|
||||||
|
<descriptor deserializerType="Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel.AuthenticatedEncryptorDescriptorDeserializer, Microsoft.AspNetCore.DataProtection, Version=6.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60">
|
||||||
|
<descriptor>
|
||||||
|
<encryption algorithm="AES_256_CBC" />
|
||||||
|
<validation algorithm="HMACSHA256" />
|
||||||
|
<masterKey p4:requiresEncryption="true" xmlns:p4="http://schemas.asp.net/2015/03/dataProtection">
|
||||||
|
<!-- Warning: the key below is in an unencrypted form. -->
|
||||||
|
<value>a+UYgy/b/D7Mo7CNoIj9n7IGGVidnOJUBQEVf+reT9WL55CKdv5Poxua12yRI2nOBB9K0cj+8dz0aYtv9w4rfg==</value>
|
||||||
|
</masterKey>
|
||||||
|
</descriptor>
|
||||||
|
</descriptor>
|
||||||
|
</key>
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,10 +1,10 @@
|
|||||||
using System;
|
using System;
|
||||||
using Microsoft.EntityFrameworkCore.Metadata;
|
using Microsoft.EntityFrameworkCore.Metadata;
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
namespace EveryThing.Migrations
|
namespace ProjecThing.Migrations
|
||||||
{
|
{
|
||||||
public partial class _1 : Migration
|
public partial class _1 : Migration
|
||||||
{
|
{
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,10 +1,10 @@
|
|||||||
using System;
|
using System;
|
||||||
using Microsoft.EntityFrameworkCore.Metadata;
|
using Microsoft.EntityFrameworkCore.Metadata;
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
namespace EveryThing.Migrations
|
namespace ProjecThing.Migrations
|
||||||
{
|
{
|
||||||
public partial class _2 : Migration
|
public partial class _2 : Migration
|
||||||
{
|
{
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,8 +1,8 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
namespace EveryThing.Migrations
|
namespace ProjecThing.Migrations
|
||||||
{
|
{
|
||||||
public partial class _3 : Migration
|
public partial class _3 : Migration
|
||||||
{
|
{
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,8 +1,8 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
namespace EveryThing.Migrations
|
namespace ProjecThing.Migrations
|
||||||
{
|
{
|
||||||
public partial class _4 : Migration
|
public partial class _4 : Migration
|
||||||
{
|
{
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,8 +1,8 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
namespace EveryThing.Migrations
|
namespace ProjecThing.Migrations
|
||||||
{
|
{
|
||||||
public partial class _5 : Migration
|
public partial class _5 : Migration
|
||||||
{
|
{
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,8 +1,8 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
namespace EveryThing.Migrations
|
namespace ProjecThing.Migrations
|
||||||
{
|
{
|
||||||
public partial class _6 : Migration
|
public partial class _6 : Migration
|
||||||
{
|
{
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,9 +1,9 @@
|
|||||||
using System;
|
using System;
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
namespace EveryThing.Migrations
|
namespace ProjecThing.Migrations
|
||||||
{
|
{
|
||||||
public partial class _7 : Migration
|
public partial class _7 : Migration
|
||||||
{
|
{
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,8 +1,8 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
namespace EveryThing.Migrations
|
namespace ProjecThing.Migrations
|
||||||
{
|
{
|
||||||
public partial class _8 : Migration
|
public partial class _8 : Migration
|
||||||
{
|
{
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,8 +1,8 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
namespace EveryThing.Migrations
|
namespace ProjecThing.Migrations
|
||||||
{
|
{
|
||||||
public partial class _9 : Migration
|
public partial class _9 : Migration
|
||||||
{
|
{
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,8 +1,8 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
namespace EveryThing.Migrations
|
namespace ProjecThing.Migrations
|
||||||
{
|
{
|
||||||
public partial class _10 : Migration
|
public partial class _10 : Migration
|
||||||
{
|
{
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,9 +1,9 @@
|
|||||||
using System;
|
using System;
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
namespace EveryThing.Migrations
|
namespace ProjecThing.Migrations
|
||||||
{
|
{
|
||||||
public partial class _11 : Migration
|
public partial class _11 : Migration
|
||||||
{
|
{
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,8 +1,8 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
namespace EveryThing.Migrations
|
namespace ProjecThing.Migrations
|
||||||
{
|
{
|
||||||
public partial class _12 : Migration
|
public partial class _12 : Migration
|
||||||
{
|
{
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,8 +1,8 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
namespace EveryThing.Migrations
|
namespace ProjecThing.Migrations
|
||||||
{
|
{
|
||||||
public partial class _13 : Migration
|
public partial class _13 : Migration
|
||||||
{
|
{
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,9 +1,9 @@
|
|||||||
using System;
|
using System;
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
namespace EveryThing.Migrations
|
namespace ProjecThing.Migrations
|
||||||
{
|
{
|
||||||
public partial class _14 : Migration
|
public partial class _14 : Migration
|
||||||
{
|
{
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,8 +1,8 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
namespace EveryThing.Migrations
|
namespace ProjecThing.Migrations
|
||||||
{
|
{
|
||||||
public partial class _15 : Migration
|
public partial class _15 : Migration
|
||||||
{
|
{
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,8 +1,8 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
namespace EveryThing.Migrations
|
namespace ProjecThing.Migrations
|
||||||
{
|
{
|
||||||
public partial class _16 : Migration
|
public partial class _16 : Migration
|
||||||
{
|
{
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,9 +1,9 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Metadata;
|
using Microsoft.EntityFrameworkCore.Metadata;
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
namespace EveryThing.Migrations
|
namespace ProjecThing.Migrations
|
||||||
{
|
{
|
||||||
public partial class _17 : Migration
|
public partial class _17 : Migration
|
||||||
{
|
{
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,15 +1,15 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Models.Transport;
|
using ProjecThing.Models.Transport;
|
||||||
using EveryThing.Models.Vehicle;
|
using ProjecThing.Models.Vehicle;
|
||||||
using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Http;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
|
|
||||||
namespace EveryThing.Models.CodeTable
|
namespace ProjecThing.Models.CodeTable
|
||||||
{
|
{
|
||||||
public class CodeTableCompany
|
public class CodeTableCompany
|
||||||
{
|
{
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Models.Vehicle;
|
using ProjecThing.Models.Vehicle;
|
||||||
|
|
||||||
namespace EveryThing.Models.CodeTable
|
namespace ProjecThing.Models.CodeTable
|
||||||
{
|
{
|
||||||
public class CodeTableCountry
|
public class CodeTableCountry
|
||||||
{
|
{
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace EveryThing.Models.CodeTable
|
namespace ProjecThing.Models.CodeTable
|
||||||
{
|
{
|
||||||
public class CodeTableDepartement
|
public class CodeTableDepartement
|
||||||
{
|
{
|
||||||
@@ -1,13 +1,13 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Models.Vehicle;
|
using ProjecThing.Models.Vehicle;
|
||||||
using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Http;
|
||||||
|
|
||||||
namespace EveryThing.Models.CodeTable
|
namespace ProjecThing.Models.CodeTable
|
||||||
{
|
{
|
||||||
public enum CodeTableEmployeeGender
|
public enum CodeTableEmployeeGender
|
||||||
{
|
{
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using EveryThing.Models.Project;
|
using ProjecThing.Models.Project;
|
||||||
|
|
||||||
namespace EveryThing.Models.CodeTable
|
namespace ProjecThing.Models.CodeTable
|
||||||
{
|
{
|
||||||
public enum CodeTableItemType
|
public enum CodeTableItemType
|
||||||
{
|
{
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace EveryThing.Models.CodeTable
|
namespace ProjecThing.Models.CodeTable
|
||||||
{
|
{
|
||||||
public class CodeTableJob
|
public class CodeTableJob
|
||||||
{
|
{
|
||||||
@@ -1,9 +1,9 @@
|
|||||||
using EveryThing.Models.Project;
|
using ProjecThing.Models.Project;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace EveryThing.Models.CodeTable
|
namespace ProjecThing.Models.CodeTable
|
||||||
{
|
{
|
||||||
public class CodeTableOperation
|
public class CodeTableOperation
|
||||||
{
|
{
|
||||||
@@ -1,13 +1,13 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Models.Project;
|
using ProjecThing.Models.Project;
|
||||||
using EveryThing.Models.Transport;
|
using ProjecThing.Models.Transport;
|
||||||
|
|
||||||
namespace EveryThing.Models.CodeTable
|
namespace ProjecThing.Models.CodeTable
|
||||||
{
|
{
|
||||||
public class CodeTablePartner
|
public class CodeTablePartner
|
||||||
{
|
{
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
|
|
||||||
namespace EveryThing.Models.CodeTable
|
namespace ProjecThing.Models.CodeTable
|
||||||
{
|
{
|
||||||
public class CodeTablePrePostText
|
public class CodeTablePrePostText
|
||||||
{
|
{
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace EveryThing.Models
|
namespace ProjecThing.Models
|
||||||
{
|
{
|
||||||
public class Document
|
public class Document
|
||||||
{
|
{
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
|
|
||||||
namespace EveryThing.Models
|
namespace ProjecThing.Models
|
||||||
{
|
{
|
||||||
public enum DocumentTypeReference
|
public enum DocumentTypeReference
|
||||||
{
|
{
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
|
|
||||||
namespace EveryThing.Models
|
namespace ProjecThing.Models
|
||||||
{
|
{
|
||||||
public enum FileType
|
public enum FileType
|
||||||
{
|
{
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
|
|
||||||
namespace EveryThing.Models
|
namespace ProjecThing.Models
|
||||||
{
|
{
|
||||||
public enum GeneralNoteStatus
|
public enum GeneralNoteStatus
|
||||||
{
|
{
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Microsoft.AspNetCore.Identity;
|
using Microsoft.AspNetCore.Identity;
|
||||||
|
|
||||||
namespace EveryThing.Models
|
namespace ProjecThing.Models
|
||||||
{
|
{
|
||||||
public class IdentityApplicationRole : IdentityRole<int>
|
public class IdentityApplicationRole : IdentityRole<int>
|
||||||
{
|
{
|
||||||
@@ -1,13 +1,13 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Microsoft.AspNetCore.Identity;
|
using Microsoft.AspNetCore.Identity;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
|
|
||||||
namespace EveryThing.Models
|
namespace ProjecThing.Models
|
||||||
{
|
{
|
||||||
public class IdentityApplicationUser : IdentityUser<int>
|
public class IdentityApplicationUser : IdentityUser<int>
|
||||||
{
|
{
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
|
|
||||||
namespace EveryThing.Models.Invoice
|
namespace ProjecThing.Models.Invoice
|
||||||
{
|
{
|
||||||
public class Invoice
|
public class Invoice
|
||||||
{
|
{
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using static EveryThing.Models.Invoice.Invoice;
|
using static ProjecThing.Models.Invoice.Invoice;
|
||||||
|
|
||||||
namespace EveryThing.Models.Invoice
|
namespace ProjecThing.Models.Invoice
|
||||||
{
|
{
|
||||||
public class InvoiceItem
|
public class InvoiceItem
|
||||||
{
|
{
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
|
|
||||||
namespace EveryThing.Models.Project
|
namespace ProjecThing.Models.Project
|
||||||
{
|
{
|
||||||
public enum ProjectStatus
|
public enum ProjectStatus
|
||||||
{
|
{
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace EveryThing.Models.Project
|
namespace ProjecThing.Models.Project
|
||||||
{
|
{
|
||||||
public enum ProjectPartStatus
|
public enum ProjectPartStatus
|
||||||
{
|
{
|
||||||
@@ -1,14 +1,14 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
using EveryThing.Models.Invoice;
|
using ProjecThing.Models.Invoice;
|
||||||
using JetBrains.Annotations;
|
using JetBrains.Annotations;
|
||||||
|
|
||||||
namespace EveryThing.Models.Project
|
namespace ProjecThing.Models.Project
|
||||||
{
|
{
|
||||||
public class ProjectPartItemStatusAttribute : Attribute
|
public class ProjectPartItemStatusAttribute : Attribute
|
||||||
{
|
{
|
||||||
@@ -1,9 +1,9 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
|
|
||||||
namespace EveryThing.Models.Project
|
namespace ProjecThing.Models.Project
|
||||||
{
|
{
|
||||||
public class ProjectPartItemOperation
|
public class ProjectPartItemOperation
|
||||||
{
|
{
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
|
|
||||||
namespace EveryThing.Models.Transport
|
namespace ProjecThing.Models.Transport
|
||||||
{
|
{
|
||||||
public class TransportLoadingOrder
|
public class TransportLoadingOrder
|
||||||
{
|
{
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
|
|
||||||
namespace EveryThing.Models.Transport
|
namespace ProjecThing.Models.Transport
|
||||||
{
|
{
|
||||||
public class TransportLoadingOrderLoadUnload
|
public class TransportLoadingOrderLoadUnload
|
||||||
{
|
{
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using EveryThing.Models.Transport;
|
using ProjecThing.Models.Transport;
|
||||||
using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Http;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
|
|
||||||
namespace EveryThing.Models.Vehicle
|
namespace ProjecThing.Models.Vehicle
|
||||||
{
|
{
|
||||||
public enum VehicleMeterType
|
public enum VehicleMeterType
|
||||||
{
|
{
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
|
|
||||||
namespace EveryThing.Models.Vehicle
|
namespace ProjecThing.Models.Vehicle
|
||||||
{
|
{
|
||||||
public class VehicleBreakdown
|
public class VehicleBreakdown
|
||||||
{
|
{
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
|
|
||||||
namespace EveryThing.Models.Vehicle
|
namespace ProjecThing.Models.Vehicle
|
||||||
{
|
{
|
||||||
public class VehicleDrive
|
public class VehicleDrive
|
||||||
{
|
{
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
|
|
||||||
namespace EveryThing.Models.Vehicle
|
namespace ProjecThing.Models.Vehicle
|
||||||
{
|
{
|
||||||
public class VehicleDriver
|
public class VehicleDriver
|
||||||
{
|
{
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
|
|
||||||
namespace EveryThing.Models.Vehicle
|
namespace ProjecThing.Models.Vehicle
|
||||||
{
|
{
|
||||||
public class VehicleFuelType
|
public class VehicleFuelType
|
||||||
{
|
{
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
|
|
||||||
namespace EveryThing.Models.Vehicle
|
namespace ProjecThing.Models.Vehicle
|
||||||
{
|
{
|
||||||
public class VehicleFueling
|
public class VehicleFueling
|
||||||
{
|
{
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
|
|
||||||
namespace EveryThing.Models.Vehicle
|
namespace ProjecThing.Models.Vehicle
|
||||||
{
|
{
|
||||||
public class VehicleFuelingCard
|
public class VehicleFuelingCard
|
||||||
{
|
{
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
|
|
||||||
namespace EveryThing.Models.Vehicle
|
namespace ProjecThing.Models.Vehicle
|
||||||
{
|
{
|
||||||
public class VehicleGroup
|
public class VehicleGroup
|
||||||
{
|
{
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
|
|
||||||
namespace EveryThing.Models.Vehicle
|
namespace ProjecThing.Models.Vehicle
|
||||||
{
|
{
|
||||||
public class VehicleIncident
|
public class VehicleIncident
|
||||||
{
|
{
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
|
|
||||||
namespace EveryThing.Models.Vehicle
|
namespace ProjecThing.Models.Vehicle
|
||||||
{
|
{
|
||||||
public enum VehicleIssuePriority
|
public enum VehicleIssuePriority
|
||||||
{
|
{
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
|
|
||||||
namespace EveryThing.Models.Vehicle
|
namespace ProjecThing.Models.Vehicle
|
||||||
{
|
{
|
||||||
public class VehicleMake
|
public class VehicleMake
|
||||||
{
|
{
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace EveryThing.Models.Vehicle
|
namespace ProjecThing.Models.Vehicle
|
||||||
{
|
{
|
||||||
public class VehicleMeterReading
|
public class VehicleMeterReading
|
||||||
{
|
{
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
|
|
||||||
namespace EveryThing.Models.Vehicle
|
namespace ProjecThing.Models.Vehicle
|
||||||
{
|
{
|
||||||
public class VehicleType
|
public class VehicleType
|
||||||
{
|
{
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
@page
|
@page
|
||||||
@model EveryThing.Pages.AdministrationCompanies.CreateModel
|
@model ProjecThing.Pages.AdministrationCompanies.CreateModel
|
||||||
|
|
||||||
@{
|
@{
|
||||||
ViewData["Title"] = "Vnos podjetja";
|
ViewData["Title"] = "Vnos podjetja";
|
||||||
@@ -1,17 +1,17 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using Microsoft.AspNetCore.Mvc.RazorPages;
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||||
using EveryThing.Data;
|
using ProjecThing.Data;
|
||||||
using EveryThing.Models;
|
using ProjecThing.Models;
|
||||||
using Microsoft.AspNetCore.Authorization;
|
using Microsoft.AspNetCore.Authorization;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
|
|
||||||
namespace EveryThing.Pages.AdministrationCompanies
|
namespace ProjecThing.Pages.AdministrationCompanies
|
||||||
{
|
{
|
||||||
[Authorize(Roles = "Administrator")]
|
[Authorize(Roles = "Administrator")]
|
||||||
public class CreateModel : PageModel
|
public class CreateModel : PageModel
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
@page
|
@page
|
||||||
@model EveryThing.Pages.AdministrationCompanies.EditModel
|
@model ProjecThing.Pages.AdministrationCompanies.EditModel
|
||||||
|
|
||||||
@{
|
@{
|
||||||
ViewData["Title"] = "Urejanje podjetja";
|
ViewData["Title"] = "Urejanje podjetja";
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
@@ -6,13 +6,13 @@ using Microsoft.AspNetCore.Mvc;
|
|||||||
using Microsoft.AspNetCore.Mvc.RazorPages;
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using EveryThing.Data;
|
using ProjecThing.Data;
|
||||||
using EveryThing.Models;
|
using ProjecThing.Models;
|
||||||
using Microsoft.AspNetCore.Authorization;
|
using Microsoft.AspNetCore.Authorization;
|
||||||
using Microsoft.AspNetCore.Identity;
|
using Microsoft.AspNetCore.Identity;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
|
|
||||||
namespace EveryThing.Pages.AdministrationCompanies
|
namespace ProjecThing.Pages.AdministrationCompanies
|
||||||
{
|
{
|
||||||
[Authorize(Roles = "Administrator")]
|
[Authorize(Roles = "Administrator")]
|
||||||
public class EditModel : PageModel
|
public class EditModel : PageModel
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
@page
|
@page
|
||||||
@model EveryThing.Pages.AdministrationCompanies.IndexModel
|
@model ProjecThing.Pages.AdministrationCompanies.IndexModel
|
||||||
|
|
||||||
@{
|
@{
|
||||||
ViewData["Title"] = "Podjetja";
|
ViewData["Title"] = "Podjetja";
|
||||||
@@ -1,16 +1,16 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using Microsoft.AspNetCore.Mvc.RazorPages;
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using EveryThing.Data;
|
using ProjecThing.Data;
|
||||||
using EveryThing.Models;
|
using ProjecThing.Models;
|
||||||
using Microsoft.AspNetCore.Authorization;
|
using Microsoft.AspNetCore.Authorization;
|
||||||
using EveryThing.Models.CodeTable;
|
using ProjecThing.Models.CodeTable;
|
||||||
|
|
||||||
namespace EveryThing.Pages.AdministrationCompanies
|
namespace ProjecThing.Pages.AdministrationCompanies
|
||||||
{
|
{
|
||||||
[Authorize(Roles = "Administrator")]
|
[Authorize(Roles = "Administrator")]
|
||||||
public class IndexModel : PageModel
|
public class IndexModel : PageModel
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
@page
|
@page
|
||||||
@model EveryThing.Pages.AdministrationCompanies.SetupModel
|
@model ProjecThing.Pages.AdministrationCompanies.SetupModel
|
||||||
@{
|
@{
|
||||||
ViewData["Title"] = "Odjava";
|
ViewData["Title"] = "Odjava";
|
||||||
Layout = "~/Pages/Layouts/_LayoutBlank.cshtml";
|
Layout = "~/Pages/Layouts/_LayoutBlank.cshtml";
|
||||||
@@ -2,14 +2,14 @@ using System;
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Models;
|
using ProjecThing.Models;
|
||||||
using Microsoft.AspNetCore.Authorization;
|
using Microsoft.AspNetCore.Authorization;
|
||||||
using Microsoft.AspNetCore.Identity;
|
using Microsoft.AspNetCore.Identity;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using Microsoft.AspNetCore.Mvc.RazorPages;
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
|
|
||||||
namespace EveryThing.Pages.AdministrationCompanies
|
namespace ProjecThing.Pages.AdministrationCompanies
|
||||||
{
|
{
|
||||||
[Authorize(Roles = "Administrator")]
|
[Authorize(Roles = "Administrator")]
|
||||||
public class SetupModel : PageModel
|
public class SetupModel : PageModel
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
@page
|
@page
|
||||||
@model EveryThing.Pages.AdministrationUsers.CreateModel
|
@model ProjecThing.Pages.AdministrationUsers.CreateModel
|
||||||
@{
|
@{
|
||||||
ViewData["Title"] = "Vnos uporabnika";
|
ViewData["Title"] = "Vnos uporabnika";
|
||||||
Layout = "~/Pages/Layouts/_Layout.cshtml";
|
Layout = "~/Pages/Layouts/_Layout.cshtml";
|
||||||
@@ -1,17 +1,17 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Data;
|
using ProjecThing.Data;
|
||||||
using EveryThing.Models;
|
using ProjecThing.Models;
|
||||||
using Microsoft.AspNetCore.Authorization;
|
using Microsoft.AspNetCore.Authorization;
|
||||||
using Microsoft.AspNetCore.Identity;
|
using Microsoft.AspNetCore.Identity;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using Microsoft.AspNetCore.Mvc.RazorPages;
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||||
|
|
||||||
namespace EveryThing.Pages.AdministrationUsers
|
namespace ProjecThing.Pages.AdministrationUsers
|
||||||
{
|
{
|
||||||
[Authorize(Roles = "Administrator")]
|
[Authorize(Roles = "Administrator")]
|
||||||
public class CreateModel : PageModel
|
public class CreateModel : PageModel
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
@page
|
@page
|
||||||
@model EveryThing.Pages.AdministrationUsers.EditModel
|
@model ProjecThing.Pages.AdministrationUsers.EditModel
|
||||||
@{
|
@{
|
||||||
ViewData["Title"] = "Urejanje uporabnika";
|
ViewData["Title"] = "Urejanje uporabnika";
|
||||||
Layout = "~/Pages/Layouts/_Layout.cshtml";
|
Layout = "~/Pages/Layouts/_Layout.cshtml";
|
||||||
@@ -3,8 +3,8 @@ using System.Collections.Generic;
|
|||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using EveryThing.Data;
|
using ProjecThing.Data;
|
||||||
using EveryThing.Models;
|
using ProjecThing.Models;
|
||||||
using Microsoft.AspNetCore.Authorization;
|
using Microsoft.AspNetCore.Authorization;
|
||||||
using Microsoft.AspNetCore.Identity;
|
using Microsoft.AspNetCore.Identity;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
@@ -12,7 +12,7 @@ using Microsoft.AspNetCore.Mvc.RazorPages;
|
|||||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
|
||||||
namespace EveryThing.Pages.AdministrationUsers
|
namespace ProjecThing.Pages.AdministrationUsers
|
||||||
{
|
{
|
||||||
[Authorize(Roles = "Administrator")]
|
[Authorize(Roles = "Administrator")]
|
||||||
public class EditModel : PageModel
|
public class EditModel : PageModel
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
@page
|
@page
|
||||||
@model EveryThing.Pages.AdministrationUsers.IndexModel
|
@model ProjecThing.Pages.AdministrationUsers.IndexModel
|
||||||
@{
|
@{
|
||||||
ViewData["Title"] = "Index";
|
ViewData["Title"] = "Index";
|
||||||
Layout = "~/Pages/Layouts/_Layout.cshtml";
|
Layout = "~/Pages/Layouts/_Layout.cshtml";
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user