student 3 týždňov pred
rodič
commit
4a741b035f

+ 1 - 1
website_natcash/Areas/LotteryV2/Controllers/HomeController.cs

@@ -6,7 +6,7 @@ using System.Threading;
 using System.Threading.Tasks;
 using LotteryWebApp.Common;
 using LotteryWebApp.Extensions;
-using LotteryWebApp.Languages;
+using LotteryWebAppNatcash.Languages;
 using LotteryWebApp.Models;
 using LotteryWebApp.Service;
 using Microsoft.AspNetCore.Hosting;

+ 1 - 1
website_natcash/Areas/LotteryV2/Views/Home/History.cshtml

@@ -1,5 +1,5 @@
 @model LotteryWebApp.Models.UserTicketHistoryModel
-@using LotteryWebApp.Languages
+@using LotteryWebAppNatcash.Languages
 @using LotteryWebApp.Common
 @{
     ViewData["Title"] = "LotteryV2 - History";

+ 1 - 1
website_natcash/Areas/LotteryV2/Views/Home/_TermResultHistoryGrouped.cshtml

@@ -1,5 +1,5 @@
 @using LotteryWebApp.Service
-@using LotteryWebApp.Languages
+@using LotteryWebAppNatcash.Languages
 @using System.Linq
 @model List<IGrouping<DateTime, Term>>
 

+ 1 - 1
website_natcash/Areas/LotteryV2/Views/Home/_TermResultHistoryV2.cshtml

@@ -1,5 +1,5 @@
 @model LotteryWebApp.Models.TermResultHistoryModel
-@using LotteryWebApp.Languages
+@using LotteryWebAppNatcash.Languages
 @if (Model != null && Model.listTerm != null && Model.listTerm.Count > 0)
 {
     foreach (var item in Model.listTerm)

+ 1 - 1
website_natcash/Areas/LotteryV2/Views/Home/_TermUserTicketHistory.cshtml

@@ -1,5 +1,5 @@
 @model LotteryWebApp.Models.UserTicketHistoryModel
-@using LotteryWebApp.Languages
+@using LotteryWebAppNatcash.Languages
 @using LotteryWebApp.Common
 
 @functions {

+ 1 - 1
website_natcash/Areas/LotteryV2/Views/Shared/_BottomNavbar.cshtml

@@ -1,4 +1,4 @@
-@using LotteryWebApp.Languages
+@using LotteryWebAppNatcash.Languages
 @{
     var activePage = ViewData["ActiveTab"] as string ?? "Home";
 }

+ 1 - 1
website_natcash/Areas/Millions/Controllers/HomeController.cs

@@ -6,7 +6,7 @@ using System.Threading;
 using System.Threading.Tasks;
 using LotteryWebApp.Common;
 using LotteryWebApp.Extensions;
-using LotteryWebApp.Languages;
+using LotteryWebAppNatcash.Languages;
 using LotteryWebApp.Models;
 using LotteryWebApp.Service;
 using Microsoft.AspNetCore.Hosting;

+ 1 - 1
website_natcash/Areas/Millions/Views/Home/History.cshtml

@@ -1,5 +1,5 @@
 @model LotteryWebApp.Models.UserTicketHistoryModel
-@using LotteryWebApp.Languages
+@using LotteryWebAppNatcash.Languages
 @using LotteryWebApp.Common
 @{
     ViewData["Title"] = "Millions - History";

+ 1 - 1
website_natcash/Areas/Millions/Views/Home/JackpotDetail.cshtml

@@ -3,7 +3,7 @@
 @using System.Globalization
 @using System.Collections.Generic
 @using LotteryWebApp.Common
-@using LotteryWebApp.Languages
+@using LotteryWebAppNatcash.Languages
 @using LotteryWebApp.Service
 @{
     ViewData["Title"] = "Millions - Jackpot Detail";

+ 1 - 1
website_natcash/Areas/Millions/Views/Home/RewardHistory.cshtml

@@ -1,5 +1,5 @@
 @model LotteryWebApp.Models.RewardHistoryModel
-@using LotteryWebApp.Languages
+@using LotteryWebAppNatcash.Languages
 @{
     ViewData["Title"] = "Millions - Reward History";
     Layout = "~/Areas/Millions/Views/Shared/_Layout.cshtml";

+ 1 - 1
website_natcash/Areas/Millions/Views/Home/_RewardHistoryList.cshtml

@@ -1,5 +1,5 @@
 @model LotteryWebApp.Models.RewardHistoryModel
-@using LotteryWebApp.Languages
+@using LotteryWebAppNatcash.Languages
 @using LotteryWebApp.Common
 
 @functions {

+ 1 - 1
website_natcash/Areas/Millions/Views/Home/_TermResultHistoryGrouped.cshtml

@@ -1,5 +1,5 @@
 @using LotteryWebApp.Service
-@using LotteryWebApp.Languages
+@using LotteryWebAppNatcash.Languages
 @using System.Linq
 @model List<IGrouping<DateTime, Term>>
 

+ 1 - 1
website_natcash/Areas/Millions/Views/Home/_TermResultHistoryV2.cshtml

@@ -1,5 +1,5 @@
 @model LotteryWebApp.Models.TermResultHistoryModel
-@using LotteryWebApp.Languages
+@using LotteryWebAppNatcash.Languages
 @if (Model != null && Model.listTerm != null && Model.listTerm.Count > 0)
 {
     foreach (var item in Model.listTerm)

+ 1 - 1
website_natcash/Areas/Millions/Views/Home/_TermUserTicketHistory.cshtml

@@ -1,5 +1,5 @@
 @model LotteryWebApp.Models.UserTicketHistoryModel
-@using LotteryWebApp.Languages
+@using LotteryWebAppNatcash.Languages
 @using LotteryWebApp.Common
 
 @functions {

+ 1 - 1
website_natcash/Areas/Millions/Views/Shared/_BottomNavbar.cshtml

@@ -1,4 +1,4 @@
-@using LotteryWebApp.Languages
+@using LotteryWebAppNatcash.Languages
 @{
     var activePage = ViewData["ActiveTab"] as string ?? "Home";
 }

+ 1 - 1
website_natcash/Controllers/AccountController.cs

@@ -5,7 +5,7 @@ using Microsoft.AspNetCore.Hosting;
 using Microsoft.AspNetCore.Mvc;
 using Microsoft.Extensions.Configuration;
 using System;
-using LotteryWebApp.Languages;
+using LotteryWebAppNatcash.Languages;
 using LotteryWebApp.Extensions;
 using System.Globalization;
 using Microsoft.AspNetCore.Http;

+ 1 - 1
website_natcash/Controllers/BaseController.cs

@@ -8,7 +8,7 @@ using System.Threading.Tasks;
 using System.Xml;
 using log4net;
 using LotteryWebApp.Common;
-using LotteryWebApp.Languages;
+using LotteryWebAppNatcash.Languages;
 using LotteryWebApp.Service;
 using Microsoft.AspNetCore.Http;
 using Microsoft.AspNetCore.Mvc;

+ 1 - 1
website_natcash/Controllers/BuyTicketController.cs

@@ -1,7 +1,7 @@
 using LotteryWebApp.Common;
 using LotteryWebApp.Components;
 using LotteryWebApp.Extensions;
-using LotteryWebApp.Languages;
+using LotteryWebAppNatcash.Languages;
 using LotteryWebApp.Models;
 using LotteryWebApp.Service;
 using Microsoft.AspNetCore.Hosting;

+ 1 - 1
website_natcash/Controllers/ProfileController.cs

@@ -1,6 +1,6 @@
 using LotteryWebApp.Common;
 using LotteryWebApp.Extensions;
-using LotteryWebApp.Languages;
+using LotteryWebAppNatcash.Languages;
 using LotteryWebApp.Models;
 using LotteryWebApp.Service;
 using Microsoft.AspNetCore.Hosting;