Skip to content

Commit

Permalink
Updated header year to 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
emonney committed Jan 11, 2024
1 parent 1b65f5c commit 8e3a833
Show file tree
Hide file tree
Showing 128 changed files with 128 additions and 128 deletions.
2 changes: 1 addition & 1 deletion QuickApp.Core/Extensions/ArrayExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

namespace QuickApp.Core.Extensions
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Core/Extensions/StringExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

namespace QuickApp.Core.Extensions
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Core/Infrastructure/ApplicationDbContext.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Core/Infrastructure/DatabaseSeeder.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

using Microsoft.EntityFrameworkCore;
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Core/Infrastructure/IDatabaseSeeder.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

namespace QuickApp.Core.Infrastructure
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Core/Models/Account/ApplicationPermission.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

using System.Diagnostics.CodeAnalysis;
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Core/Models/Account/ApplicationRole.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

using Microsoft.AspNetCore.Identity;
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Core/Models/Account/ApplicationUser.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

using Microsoft.AspNetCore.Identity;
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Core/Models/BaseEntity.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

using System.ComponentModel.DataAnnotations;
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Core/Models/Gender.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

namespace QuickApp.Core.Models
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Core/Models/IAuditableEntity.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

namespace QuickApp.Core.Models
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Core/Models/Shop/Customer.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

namespace QuickApp.Core.Models.Shop
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Core/Models/Shop/Order.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

using QuickApp.Core.Models.Account;
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Core/Models/Shop/OrderDetail.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

namespace QuickApp.Core.Models.Shop
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Core/Models/Shop/Product.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

namespace QuickApp.Core.Models.Shop
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Core/Models/Shop/ProductCategory.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

namespace QuickApp.Core.Models.Shop
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Core/Services/Account/ApplicationPermissions.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

using QuickApp.Core.Models.Account;
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Core/Services/Account/CustomClaims.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

namespace QuickApp.Core.Services.Account
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

namespace QuickApp.Core.Services.Account
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

namespace QuickApp.Core.Services.Account
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

namespace QuickApp.Core.Services.Account
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

using QuickApp.Core.Models.Account;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

namespace QuickApp.Core.Services.Account
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

using QuickApp.Core.Models.Account;
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Core/Services/Account/UserAccountService.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

using Microsoft.AspNetCore.Identity;
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Core/Services/Account/UserRoleService.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

using Microsoft.AspNetCore.Identity;
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Core/Services/IEmailSender.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

namespace QuickApp.Core.Services
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Core/Services/Shop/CustomerService.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

using Microsoft.EntityFrameworkCore;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

namespace QuickApp.Core.Services.Shop
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Core/Services/Shop/Interfaces/ICustomerService.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

using QuickApp.Core.Models.Shop;
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Core/Services/Shop/Interfaces/IOrdersService.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

namespace QuickApp.Core.Services.Shop
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Core/Services/Shop/Interfaces/IProductService.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

namespace QuickApp.Core.Services.Shop
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Core/Services/Shop/OrdersService.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

namespace QuickApp.Core.Services.Shop
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Core/Services/Shop/ProductService.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

namespace QuickApp.Core.Services.Shop
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Server/Attributes/MinimumCountAttribute.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

using System.Collections;
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Server/Attributes/SanitizeModelAttribute.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

using Microsoft.AspNetCore.Mvc.Filters;
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Server/Authorization/AuthPolicies.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

namespace QuickApp.Server.Authorization
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

using Microsoft.AspNetCore.Authorization;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

using Microsoft.AspNetCore.Authorization;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

using Microsoft.AspNetCore.Authorization;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

using Microsoft.AspNetCore.Authorization;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

using QuickApp.Server.Authorization.Requirements;
Expand Down
2 changes: 1 addition & 1 deletion QuickApp.Server/Configuration/AppSettings.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

namespace QuickApp.Server.Configuration
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ---------------------------------------
// Email: [email protected]
// Templates: www.ebenmonney.com/templates
// (c) 2023 www.ebenmonney.com/mit-license
// (c) 2024 www.ebenmonney.com/mit-license
// ---------------------------------------

using Microsoft.EntityFrameworkCore;
Expand Down
Loading

0 comments on commit 8e3a833

Please sign in to comment.