From 36506c8558b91866539ebf16a2c215677e1db597 Mon Sep 17 00:00:00 2001 From: Jitca Beniamin Date: Sun, 6 Aug 2023 11:45:58 +0100 Subject: [PATCH] rename the file header --- .../Commands/AccountCommand/ChangePasswordCommand.cs | 2 +- BlazorShop.Application/Commands/AccountCommand/LoginCommand.cs | 2 +- .../Commands/AccountCommand/RegisterCommand.cs | 2 +- .../Commands/AccountCommand/ResetPasswordCommand.cs | 2 +- .../Commands/CartCommand/CreateCartCommand.cs | 2 +- .../Commands/CartCommand/DeleteAllCartsCommand.cs | 2 +- .../Commands/CartCommand/DeleteCartCommand.cs | 2 +- .../Commands/CartCommand/UpdateCartCommand.cs | 2 +- .../Commands/ClotheCommand/CreateClotheCommand.cs | 2 +- .../Commands/ClotheCommand/DeleteClotheCommand.cs | 2 +- .../Commands/ClotheCommand/UpdateClotheCommand.cs | 2 +- .../Commands/InvoiceCommand/CreateInvoiceCommand.cs | 2 +- .../Commands/InvoiceCommand/DeleteInvoiceCommand.cs | 2 +- .../Commands/InvoiceCommand/UpdateInvoiceCommand.cs | 2 +- .../Commands/MusicCommand/CreateMusicCommand.cs | 2 +- .../Commands/MusicCommand/DeleteMusicCommand.cs | 2 +- .../Commands/MusicCommand/UpdateMusicCommand.cs | 2 +- .../Commands/OrderCommand/CreateOrderCommand.cs | 2 +- .../Commands/OrderCommand/DeleteOrderCommand.cs | 2 +- .../Commands/OrderCommand/UpdateOrderCommand.cs | 2 +- .../Commands/ReceiptCommand/CreateReceiptCommand.cs | 2 +- .../Commands/ReceiptCommand/DeleteReceiptCommand.cs | 2 +- .../Commands/ReceiptCommand/UpdateReceiptCommand.cs | 2 +- .../Commands/RoleCommand/CreateRoleCommand.cs | 2 +- .../Commands/RoleCommand/DeleteRoleCommand.cs | 2 +- .../Commands/RoleCommand/UpdateRoleCommand.cs | 2 +- .../Commands/SubscriberCommand/CreateSubscriberCommand.cs | 2 +- .../Commands/SubscriberCommand/DeleteSubscriberCommand.cs | 2 +- .../SubscriberCommand/UpdateCreatedSubscriberCommand.cs | 2 +- .../Commands/SubscriberCommand/UpdateSubscriberCommand.cs | 2 +- .../Commands/SubscriberCommand/UpdateSubscriberStatusCommand.cs | 2 +- .../Commands/SubscriptionCommand/CreateSubscriptionCommand.cs | 2 +- .../Commands/SubscriptionCommand/DeleteSubscriptionCommand.cs | 2 +- .../Commands/SubscriptionCommand/UpdateSubscriptionCommand.cs | 2 +- .../Commands/TodoItemCommand/CreateTodoItemCommand.cs | 2 +- .../Commands/TodoItemCommand/DeleteTodoItemCommand.cs | 2 +- .../Commands/TodoItemCommand/UpdateTodoItemCommand.cs | 2 +- .../Commands/TodoListCommand/CreateTodoListCommand.cs | 2 +- .../Commands/TodoListCommand/DeleteTodoListCommand.cs | 2 +- .../Commands/TodoListCommand/UpdateTodoListCommand.cs | 2 +- .../Commands/UserCommand/ActivateUserCommand.cs | 2 +- .../Commands/UserCommand/AssignUserToRoleCommand.cs | 2 +- .../Commands/UserCommand/CreateUserCommand.cs | 2 +- .../Commands/UserCommand/DeleteUserCommand.cs | 2 +- .../Commands/UserCommand/UpdateUserCommand.cs | 2 +- .../Commands/UserCommand/UpdateUserEmailCommand.cs | 2 +- .../Common/Behaviours/UnhandledExceptionBehaviour.cs | 2 +- BlazorShop.Application/Common/Behaviours/ValidationBehaviour.cs | 2 +- BlazorShop.Application/Common/Exceptions/ValidationException.cs | 2 +- BlazorShop.Application/Common/Interfaces/IAccountService.cs | 2 +- .../Common/Interfaces/IApplicationDbContext.cs | 2 +- BlazorShop.Application/Common/Interfaces/IDateTimeService.cs | 2 +- BlazorShop.Application/Common/Interfaces/IEmailService.cs | 2 +- BlazorShop.Application/Common/Interfaces/IRoleService.cs | 2 +- BlazorShop.Application/Common/Interfaces/IUserService.cs | 2 +- BlazorShop.Application/Common/Mappings/IMapFrom.cs | 2 +- BlazorShop.Application/Common/Mappings/MappingExtensions.cs | 2 +- BlazorShop.Application/Common/Mappings/MappingProfile.cs | 2 +- BlazorShop.Application/Common/Models/EmailSettings.cs | 2 +- BlazorShop.Application/Common/Models/JwtTokenConfig.cs | 2 +- BlazorShop.Application/Common/Models/JwtTokenResponse.cs | 2 +- BlazorShop.Application/Common/Models/RequestResponse.cs | 2 +- BlazorShop.Application/Common/Models/Result.cs | 2 +- BlazorShop.Application/DependencyInjection.cs | 2 +- .../Commands/AccountHandler/ChangePasswordCommandHandler.cs | 2 +- .../Handlers/Commands/AccountHandler/LoginCommandHandler.cs | 2 +- .../Handlers/Commands/AccountHandler/RegisterCommandHandler.cs | 2 +- .../Commands/AccountHandler/ResetPasswordCommandHandler.cs | 2 +- .../Handlers/Commands/CartHandler/CreateCartCommandHandler.cs | 2 +- .../Commands/CartHandler/DeleteAllCartsCommandHandler.cs | 2 +- .../Handlers/Commands/CartHandler/DeleteCartCommandHandler.cs | 2 +- .../Handlers/Commands/CartHandler/UpdateCartCommandHandler.cs | 2 +- .../Commands/ClotheHandler/CreateClotheCommandHandler.cs | 2 +- .../Commands/ClotheHandler/DeleteClotheCommandHandler.cs | 2 +- .../Commands/ClotheHandler/UpdateClotheCommandHandler.cs | 2 +- .../Commands/InvoiceHandler/CreateInvoiceCommandHandler.cs | 2 +- .../Commands/InvoiceHandler/DeleteInvoiceCommandHandler.cs | 2 +- .../Commands/InvoiceHandler/UpdateInvoiceCommandHandler.cs | 2 +- .../Handlers/Commands/MusicHandler/CreateMusicCommandHandler.cs | 2 +- .../Handlers/Commands/MusicHandler/DeleteMusicCommandHandler.cs | 2 +- .../Handlers/Commands/MusicHandler/UpdateMusicCommandHandler.cs | 2 +- .../Handlers/Commands/OrderHandler/CreateOrderCommandHandler.cs | 2 +- .../Handlers/Commands/OrderHandler/DeleteOrderCommandHandler.cs | 2 +- .../Handlers/Commands/OrderHandler/UpdateOrderCommandHandler.cs | 2 +- .../Commands/ReceiptHandler/CreateReceiptCommandHandler.cs | 2 +- .../Commands/ReceiptHandler/DeleteReceiptCommandHandler.cs | 2 +- .../Commands/ReceiptHandler/UpdateReceiptCommandHandler.cs | 2 +- .../Handlers/Commands/RoleHandler/CreateRoleCommandHandler.cs | 2 +- .../Handlers/Commands/RoleHandler/DeleteRoleCommandHandler.cs | 2 +- .../Handlers/Commands/RoleHandler/UpdateRoleCommandHandler.cs | 2 +- .../SubscriberHandler/CreateSubscriberCommandHandler.cs | 2 +- .../SubscriberHandler/DeleteSubscriberCommandHandler.cs | 2 +- .../SubscriberHandler/UpdateCreatedSubscriberCommandHandler.cs | 2 +- .../SubscriberHandler/UpdateSubscriberCommandHandler.cs | 2 +- .../SubscriberHandler/UpdateSubscriberStatusCommandHandler.cs | 2 +- .../SubscriptionHandler/CreateSubscriptionCommandHandler.cs | 2 +- .../SubscriptionHandler/DeleteSubscriptionCommandHandler.cs | 2 +- .../SubscriptionHandler/UpdateSubscriptionCommandHandler.cs | 2 +- .../Commands/TodoItemHandler/CreateTodoItemCommandHandler.cs | 2 +- .../Commands/TodoItemHandler/DeleteTodoItemCommandHandler.cs | 2 +- .../Commands/TodoItemHandler/UpdateTodoItemCommandHandler.cs | 2 +- .../Commands/TodoListHandler/CreateTodoListCommandHandler.cs | 2 +- .../Commands/TodoListHandler/DeleteTodoListCommandHandler.cs | 2 +- .../Commands/TodoListHandler/UpdateTodoListCommandHandler.cs | 2 +- .../Handlers/Commands/UserHandler/ActivateUserCommandHandler.cs | 2 +- .../Commands/UserHandler/AssignUserToRoleCommandHandler.cs | 2 +- .../Handlers/Commands/UserHandler/CreateUserCommandHandler.cs | 2 +- .../Handlers/Commands/UserHandler/DeleteUserCommandHandler.cs | 2 +- .../Handlers/Commands/UserHandler/UpdateUserCommandHandler.cs | 2 +- .../Commands/UserHandler/UpdateUserEmailCommandHandler.cs | 2 +- .../Handlers/Queries/CartHandler/GetCartByIdQueryHandler.cs | 2 +- .../Handlers/Queries/CartHandler/GetCartsCountQueryHandler.cs | 2 +- .../Handlers/Queries/CartHandler/GetCartsQueryHandler.cs | 2 +- .../Handlers/Queries/ClotheHandler/GetClotheByIdQueryHandler.cs | 2 +- .../Handlers/Queries/ClotheHandler/GetClothesQueryHandler.cs | 2 +- .../Queries/InvoiceHandler/GetInvoiceByIdQueryHandler.cs | 2 +- .../Handlers/Queries/InvoiceHandler/GetInvoicesQueryHandler.cs | 2 +- .../Handlers/Queries/MusicHandler/GetMusicByIdQueryHandler.cs | 2 +- .../Handlers/Queries/MusicHandler/GetMusicsQueryHandler.cs | 2 +- .../Handlers/Queries/OrderHandler/GetOrderByIdQueryHandler.cs | 2 +- .../Handlers/Queries/OrderHandler/GetOrdersQueryHandler.cs | 2 +- .../Queries/ReceiptHandler/GetReceiptByIdQueryHandler.cs | 2 +- .../Handlers/Queries/ReceiptHandler/GetReceiptsQueryHandler.cs | 2 +- .../Handlers/Queries/RoleHandler/GetRoleByIdQueryHandler.cs | 2 +- .../Queries/RoleHandler/GetRoleByNormalizedNameQueryHandler.cs | 2 +- .../Queries/RoleHandler/GetRolesForAdminQueryHandler.cs | 2 +- .../Handlers/Queries/RoleHandler/GetRolesQueryHandler.cs | 2 +- .../Queries/SubscriberHandler/GetSubscriberByIdQueryHandler.cs | 2 +- .../Queries/SubscriberHandler/GetSubscribersQueryHandler.cs | 2 +- .../Queries/SubscriberHandler/GetUserSubscribersQueryHandler.cs | 2 +- .../SubscriptionHandler/GetSubscriptionByIdQueryHandler.cs | 2 +- .../Queries/SubscriptionHandler/GetSubscriptionsQueryHandler.cs | 2 +- .../Queries/TodoItemHandler/GetTodoItemByIdQueryHandler.cs | 2 +- .../Queries/TodoItemHandler/GetTodoItemsQueryHandler.cs | 2 +- .../Queries/TodoListHandler/GetTodoListByIdQueryHandler.cs | 2 +- .../Queries/TodoListHandler/GetTodoListsQueryHandler.cs | 2 +- .../Handlers/Queries/UserHandler/GetUserByEmailQueryHandler.cs | 2 +- .../Handlers/Queries/UserHandler/GetUserByIdQueryHandler.cs | 2 +- .../Queries/UserHandler/GetUsersInactiveQueryHandler.cs | 2 +- .../Handlers/Queries/UserHandler/GetUsersQueryHandler.cs | 2 +- BlazorShop.Application/Queries/CartQuery/GetCartByIdQuery.cs | 2 +- BlazorShop.Application/Queries/CartQuery/GetCartsCountQuery.cs | 2 +- BlazorShop.Application/Queries/CartQuery/GetCartsQuery.cs | 2 +- .../Queries/ClotheQuery/GetClotheByIdQuery.cs | 2 +- BlazorShop.Application/Queries/ClotheQuery/GetClothesQuery.cs | 2 +- .../Queries/InvoiceQuery/GetInvoiceByIdQuery.cs | 2 +- BlazorShop.Application/Queries/InvoiceQuery/GetInvoicesQuery.cs | 2 +- BlazorShop.Application/Queries/MusicQuery/GetMusicByIdQuery.cs | 2 +- BlazorShop.Application/Queries/MusicQuery/GetMusicsQuery.cs | 2 +- BlazorShop.Application/Queries/OrderQuery/GetOrderByIdQuery.cs | 2 +- BlazorShop.Application/Queries/OrderQuery/GetOrdersQuery.cs | 2 +- .../Queries/ReceiptQuery/GetReceiptByIdQuery.cs | 2 +- BlazorShop.Application/Queries/ReceiptQuery/GetReceiptsQuery.cs | 2 +- BlazorShop.Application/Queries/RoleQuery/GetRoleByIdQuery.cs | 2 +- .../Queries/RoleQuery/GetRoleByNormalizedNameQuery.cs | 2 +- .../Queries/RoleQuery/GetRolesForAdminQuery.cs | 2 +- BlazorShop.Application/Queries/RoleQuery/GetRolesQuery.cs | 2 +- .../Queries/SubscriberQuery/GetSubscriberByIdQuery.cs | 2 +- .../Queries/SubscriberQuery/GetSubscribersQuery.cs | 2 +- .../Queries/SubscriberQuery/GetUserSubscribersQuery.cs | 2 +- .../Queries/SubscriptionQuery/GetSubscriptionByIdQuery.cs | 2 +- .../Queries/SubscriptionQuery/GetSubscriptionsQuery.cs | 2 +- .../Queries/TodoItemQuery/GetTodoItemByIdQuery.cs | 2 +- .../Queries/TodoItemQuery/GetTodoItemsQuery.cs | 2 +- .../Queries/TodoListQuery/GetTodoListByIdQuery.cs | 2 +- .../Queries/TodoListQuery/GetTodoListsQuery.cs | 2 +- BlazorShop.Application/Queries/UserQuery/GetUserByEmailQuery.cs | 2 +- BlazorShop.Application/Queries/UserQuery/GetUserByIdQuery.cs | 2 +- .../Queries/UserQuery/GetUsersInactiveQuery.cs | 2 +- BlazorShop.Application/Queries/UserQuery/GetUsersQuery.cs | 2 +- BlazorShop.Application/Responses/CartResponse.cs | 2 +- BlazorShop.Application/Responses/ClotheResponse.cs | 2 +- BlazorShop.Application/Responses/InvoiceResponse.cs | 2 +- BlazorShop.Application/Responses/MusicResponse.cs | 2 +- BlazorShop.Application/Responses/OrderResponse.cs | 2 +- BlazorShop.Application/Responses/ReceiptResponse.cs | 2 +- BlazorShop.Application/Responses/RoleResponse.cs | 2 +- BlazorShop.Application/Responses/SubscriberResponse.cs | 2 +- BlazorShop.Application/Responses/SubscriptionResponse.cs | 2 +- BlazorShop.Application/Responses/TodoItemResponse.cs | 2 +- BlazorShop.Application/Responses/TodoListResponse.cs | 2 +- BlazorShop.Application/Responses/UserResponse.cs | 2 +- BlazorShop.Application/Utils/ErrorsManager.cs | 2 +- BlazorShop.Application/Utils/StringRoleResources.cs | 2 +- .../AccountValidator/ChangePasswordCommandValidator.cs | 2 +- .../Validators/AccountValidator/LoginCommandValidator.cs | 2 +- .../Validators/AccountValidator/RegisterCommandValidator.cs | 2 +- .../AccountValidator/ResetPasswordCommandValidator.cs | 2 +- .../Validators/CartValidator/CreateCartCommandValidator.cs | 2 +- .../Validators/CartValidator/DeleteAllCartsCommandValidator.cs | 2 +- .../Validators/CartValidator/DeleteCartCommandValidator.cs | 2 +- .../Validators/CartValidator/GetCartByIdQueryValidator.cs | 2 +- .../Validators/CartValidator/GetCartsCountQueryValidator.cs | 2 +- .../Validators/CartValidator/GetCartsQueryValidator.cs | 2 +- .../Validators/CartValidator/UpdateCartCommandValidator.cs | 2 +- .../Validators/ClotheValidator/CreateClotheCommandValidator.cs | 2 +- .../Validators/ClotheValidator/DeleteClotheCommandValidator.cs | 2 +- .../Validators/ClotheValidator/GetClotheByIdQueryValidator.cs | 2 +- .../Validators/ClotheValidator/UpdateClotheCommandValidator.cs | 2 +- .../InvoiceValidator/CreateInvoiceCommandValidator.cs | 2 +- .../InvoiceValidator/DeleteInvoiceCommandValidator.cs | 2 +- .../Validators/InvoiceValidator/GetInvoiceByIdQueryValidator.cs | 2 +- .../InvoiceValidator/UpdateInvoiceCommandValidator.cs | 2 +- .../Validators/MusicValidator/CreateMusicCommandValidator.cs | 2 +- .../Validators/MusicValidator/DeleteMusicCommandValidator.cs | 2 +- .../Validators/MusicValidator/GetMusicByIdQueryValidator.cs | 2 +- .../Validators/MusicValidator/UpdateMusicCommandValidator.cs | 2 +- .../Validators/OrderValidator/CreateOrderCommandValidator.cs | 2 +- .../Validators/OrderValidator/DeleteOrderCommandValidator.cs | 2 +- .../Validators/OrderValidator/GetOrderByIdQueryValidator.cs | 2 +- .../Validators/OrderValidator/GetOrdersQueryValidator.cs | 2 +- .../Validators/OrderValidator/UpdateOrderCommandValidator.cs | 2 +- .../ReceiptValidator/CreateReceiptCommandValidator.cs | 2 +- .../ReceiptValidator/DeleteReceiptCommandValidator.cs | 2 +- .../Validators/ReceiptValidator/GetReceiptByIdQueryValidator.cs | 2 +- .../Validators/ReceiptValidator/GetReceiptsQueryValidator.cs | 2 +- .../ReceiptValidator/UpdateReceiptCommandValidator.cs | 2 +- .../Validators/RoleValidator/CreateRoleCommandValidator.cs | 2 +- .../Validators/RoleValidator/DeleteRoleCommandValidator.cs | 2 +- .../Validators/RoleValidator/GetRoleByIdQueryValidator.cs | 2 +- .../RoleValidator/GetRoleByNormalizedNameQueryValidator.cs | 2 +- .../Validators/RoleValidator/UpdateRoleCommandValidator.cs | 2 +- .../SubscriberValidator/CreateSubscriberCommandValidator.cs | 2 +- .../SubscriberValidator/DeleteSubscriberCommandValidator.cs | 2 +- .../SubscriberValidator/GetSubscriberByIdQueryValidator.cs | 2 +- .../SubscriberValidator/GetUserSubscribersQueryValidator.cs | 2 +- .../UpdateCreatedSubscriberCommandValidator.cs | 2 +- .../SubscriberValidator/UpdateSubscriberCommandValidator.cs | 2 +- .../UpdateSubscriberStatusCommandValidator.cs | 2 +- .../SubscriptionValidator/CreateSubscriptionCommandValidator.cs | 2 +- .../SubscriptionValidator/DeleteSubscriptionCommandValidator.cs | 2 +- .../SubscriptionValidator/GetSubscriptionByIdQueryValidator.cs | 2 +- .../SubscriptionValidator/UpdateSubscriptionCommandValidator.cs | 2 +- .../TodoItemValidator/CreateTodoItemCommandValidator.cs | 2 +- .../TodoItemValidator/DeleteTodoItemCommandValidator.cs | 2 +- .../TodoItemValidator/GetTodoItemByIdQueryValidator.cs | 2 +- .../TodoItemValidator/UpdateTodoItemCommandValidator.cs | 2 +- .../TodoListValidator/CreateTodoListCommandValidator.cs | 2 +- .../TodoListValidator/DeleteTodoListCommandValidator.cs | 2 +- .../TodoListValidator/GetTodoListByIdQueryValidator.cs | 2 +- .../TodoListValidator/UpdateTodoListCommandValidator.cs | 2 +- .../Validators/UserValidator/ActivateUserCommandValidator.cs | 2 +- .../UserValidator/AssignUserToRoleCommandValidator.cs | 2 +- .../Validators/UserValidator/CreateUserCommandValidator.cs | 2 +- .../Validators/UserValidator/DeleteUserCommandValidator.cs | 2 +- .../Validators/UserValidator/GetUserByEmailQueryValidator.cs | 2 +- .../Validators/UserValidator/GetUserByIdQueryValidator.cs | 2 +- .../Validators/UserValidator/UpdateUserCommandValidator.cs | 2 +- .../Validators/UserValidator/UpdateUserEmailCommandValidator.cs | 2 +- BlazorShop.Application/_Imports.cs | 2 +- BlazorShop.Domain/Common/EntityBase.cs | 2 +- BlazorShop.Domain/Entities/Cart.cs | 2 +- BlazorShop.Domain/Entities/Clothe.cs | 2 +- BlazorShop.Domain/Entities/Identity/Role.cs | 2 +- BlazorShop.Domain/Entities/Identity/RoleClaim.cs | 2 +- BlazorShop.Domain/Entities/Identity/User.cs | 2 +- BlazorShop.Domain/Entities/Identity/UserClaim.cs | 2 +- BlazorShop.Domain/Entities/Identity/UserLogin.cs | 2 +- BlazorShop.Domain/Entities/Identity/UserRole.cs | 2 +- BlazorShop.Domain/Entities/Identity/UserToken.cs | 2 +- BlazorShop.Domain/Entities/Invoice.cs | 2 +- BlazorShop.Domain/Entities/Music.cs | 2 +- BlazorShop.Domain/Entities/Order.cs | 2 +- BlazorShop.Domain/Entities/Receipt.cs | 2 +- BlazorShop.Domain/Entities/Subscriber.cs | 2 +- BlazorShop.Domain/Entities/Subscription.cs | 2 +- BlazorShop.Domain/Entities/TodoItem.cs | 2 +- BlazorShop.Domain/Entities/TodoList.cs | 2 +- BlazorShop.Domain/Enums/SubscriptionStatus.cs | 2 +- BlazorShop.Domain/Enums/TodoItemPriority.cs | 2 +- BlazorShop.Domain/Enums/TodoItemState.cs | 2 +- BlazorShop.Domain/_Imports.cs | 2 +- BlazorShop.Infrastructure/DependencyInjection.cs | 2 +- BlazorShop.Infrastructure/Persistence/ApplicationDbContext.cs | 2 +- .../Persistence/ApplicationDbContextSeed.cs | 2 +- .../Persistence/Configurations/CartConfiguration.cs | 2 +- .../Persistence/Configurations/ClotheConfiguration.cs | 2 +- .../Configurations/Identity/RoleClaimConfiguration.cs | 2 +- .../Persistence/Configurations/Identity/RoleConfiguration.cs | 2 +- .../Configurations/Identity/UserClaimConfiguration.cs | 2 +- .../Persistence/Configurations/Identity/UserConfiguration.cs | 2 +- .../Configurations/Identity/UserLoginConfiguration.cs | 2 +- .../Configurations/Identity/UserRoleConfiguration.cs | 2 +- .../Configurations/Identity/UserTokenConfiguration.cs | 2 +- .../Persistence/Configurations/InvoiceConfiguration.cs | 2 +- .../Persistence/Configurations/MusicConfiguration.cs | 2 +- .../Persistence/Configurations/OrderConfiguration.cs | 2 +- .../Persistence/Configurations/ReceiptConfiguration.cs | 2 +- .../Persistence/Configurations/SubscriberConfiguration.cs | 2 +- .../Persistence/Configurations/SubscriptionConfiguration.cs | 2 +- .../Persistence/Configurations/TodoItemConfiguration.cs | 2 +- .../Persistence/Configurations/TodoListConfiguration.cs | 2 +- BlazorShop.Infrastructure/Services/AccountService.cs | 2 +- BlazorShop.Infrastructure/Services/DateTimeService.cs | 2 +- BlazorShop.Infrastructure/Services/EmailService.cs | 2 +- BlazorShop.Infrastructure/Services/RoleService.cs | 2 +- BlazorShop.Infrastructure/Services/UserService.cs | 2 +- BlazorShop.Infrastructure/Utils/AdminSeedModel.cs | 2 +- BlazorShop.Infrastructure/Utils/RolesSeedModel.cs | 2 +- BlazorShop.Infrastructure/_Imports.cs | 2 +- .../AccountHandler/ChangePasswordCommandHandlerTests.cs | 2 +- .../Commands/AccountHandler/LoginCommandHandlerTests.cs | 2 +- .../Commands/AccountHandler/RegisterCommandHandlerTests.cs | 2 +- .../Commands/AccountHandler/ResetPasswordCommandHandlerTests.cs | 2 +- .../Commands/CartHandler/CreateCartCommandHandlerTests.cs | 2 +- .../Commands/CartHandler/DeleteAllCartsCommandHandlerTests.cs | 2 +- .../Commands/CartHandler/DeleteCartCommandHandlerTests.cs | 2 +- .../Commands/CartHandler/UpdateCartCommandHandlerTests.cs | 2 +- .../Commands/ClotheHandler/CreateClotheCommandHandlerTests.cs | 2 +- .../Commands/ClotheHandler/DeleteClotheCommandHandlerTests.cs | 2 +- .../Commands/ClotheHandler/UpdateClotheCommandHandlerTests.cs | 2 +- .../Commands/InvoiceHandler/CreateInvoiceCommandHandlerTests.cs | 2 +- .../Commands/InvoiceHandler/DeleteInvoiceCommandHandlerTests.cs | 2 +- .../Commands/InvoiceHandler/UpdateInvoiceCommandHandlerTests.cs | 2 +- .../Commands/MusicHandler/CreateMusicCommandHandlerTests.cs | 2 +- .../Commands/MusicHandler/DeleteMusicCommandHandlerTests.cs | 2 +- .../Commands/MusicHandler/UpdateMusicCommandHandlerTests.cs | 2 +- .../Commands/OrderHandler/CreateOrderCommandHandlerTests.cs | 2 +- .../Commands/OrderHandler/DeleteOrderCommandHandlerTests.cs | 2 +- .../Commands/OrderHandler/UpdateOrderCommandHandlerTests.cs | 2 +- .../Commands/ReceiptHandler/CreateReceiptCommandHandlerTests.cs | 2 +- .../Commands/ReceiptHandler/DeleteReceiptCommandHandlerTests.cs | 2 +- .../Commands/ReceiptHandler/UpdateReceiptCommandHandlerTests.cs | 2 +- .../Commands/RoleHandler/CreateRoleCommandHandlerTests.cs | 2 +- .../Commands/RoleHandler/DeleteRoleCommandHandlerTests.cs | 2 +- .../Commands/RoleHandler/UpdateRoleCommandHandlerTests.cs | 2 +- .../SubscriberHandler/CreateSubscriberCommandHandlerTests.cs | 2 +- .../SubscriberHandler/DeleteSubscriberCommandHandlerTests.cs | 2 +- .../UpdateCreatedSubscriberCommandHandlerTests.cs | 2 +- .../SubscriberHandler/UpdateSubscriberCommandHandlerTests.cs | 2 +- .../UpdateSubscriberStatusCommandHandlerTests.cs | 2 +- .../CreateSubscriptionCommandHandlerTests.cs | 2 +- .../DeleteSubscriptionCommandHandlerTests.cs | 2 +- .../UpdateSubscriptionCommandHandlerTests.cs | 2 +- .../TodoItemHandler/CreateTodoItemCommandHandlerTests.cs | 2 +- .../TodoItemHandler/DeleteTodoItemCommandHandlerTests.cs | 2 +- .../TodoItemHandler/UpdateTodoItemCommandHandlerTests.cs | 2 +- .../TodoListHandler/CreateTodoListCommandHandlerTests.cs | 2 +- .../TodoListHandler/DeleteTodoListCommandHandlerTests.cs | 2 +- .../TodoListHandler/UpdateTodoListCommandHandlerTests.cs | 2 +- .../Commands/UserHandler/ActivateUserCommandHandlerTests.cs | 2 +- .../Commands/UserHandler/AssignUserToRoleCommandHandlerTests.cs | 2 +- .../Commands/UserHandler/CreateUserCommandHandlerTests.cs | 2 +- .../Commands/UserHandler/DeleteUserCommandHandlerTests.cs | 2 +- .../Commands/UserHandler/UpdateUserCommandHandlerTests.cs | 2 +- .../Commands/UserHandler/UpdateUserEmailCommandHandlerTests.cs | 2 +- .../Queries/CartHandler/GetCartByIdQueryHandlerTests.cs | 2 +- .../Queries/CartHandler/GetCartsCountQueryHandlerTests.cs | 2 +- .../Handlers/Queries/CartHandler/GetCartsQueryHandlerTests.cs | 2 +- .../Queries/ClotheHandler/GetClotheByIdQueryHandlerTests.cs | 2 +- .../Queries/ClotheHandler/GetClothesQueryHandlerTests.cs | 2 +- .../Queries/InvoiceHandler/GetInvoiceByIdQueryHandlerTests.cs | 2 +- .../Queries/InvoiceHandler/GetInvoicesQueryHandlerTests.cs | 2 +- .../Queries/MusicHandler/GetMusicByIdQueryHandlerTests.cs | 2 +- .../Handlers/Queries/MusicHandler/GetMusicsQueryHandlerTests.cs | 2 +- .../Queries/OrderHandler/GetOrderByIdQueryHandlerTests.cs | 2 +- .../Handlers/Queries/OrderHandler/GetOrdersQueryHandlerTests.cs | 2 +- .../Queries/ReceiptHandler/GetReceiptByIdQueryHandlerTests.cs | 2 +- .../Queries/ReceiptHandler/GetReceiptsQueryHandlerTests.cs | 2 +- .../Queries/RoleHandler/GetRoleByIdQueryHandlerTests.cs | 2 +- .../RoleHandler/GetRoleByNormalizedNameQueryHandlerTests.cs | 2 +- .../Queries/RoleHandler/GetRolesForAdminQueryHandlerTests.cs | 2 +- .../Handlers/Queries/RoleHandler/GetRolesQueryHandlerTests.cs | 2 +- .../SubscriberHandler/GetSubscriberByIdQueryHandlerTests.cs | 2 +- .../SubscriberHandler/GetSubscribersQueryHandlerTests.cs | 2 +- .../SubscriberHandler/GetUserSubscribersQueryHandlerTests.cs | 2 +- .../SubscriptionHandler/GetSubscriptionByIdQueryHandlerTests.cs | 2 +- .../SubscriptionHandler/GetSubscriptionsQueryHandlerTests.cs | 2 +- .../Queries/TodoItemHandler/GetTodoItemByIdQueryHandlerTests.cs | 2 +- .../Queries/TodoItemHandler/GetTodoItemsQueryHandlerTests.cs | 2 +- .../Queries/TodoListHandler/GetTodoListByIdQueryHandlerTests.cs | 2 +- .../Queries/TodoListHandler/GetTodoListsQueryHandlerTests.cs | 2 +- .../Queries/UserHandler/GetUserByEmailQueryHandlerTests.cs | 2 +- .../Queries/UserHandler/GetUserByIdQueryHandlerTests.cs | 2 +- .../Queries/UserHandler/GetUsersInactiveQueryHandlerTests.cs | 2 +- .../Handlers/Queries/UserHandler/GetUsersQueryHandlerTests.cs | 2 +- BlazorShop.UnitTests/Controllers/AccountsControllerTests.cs | 2 +- BlazorShop.UnitTests/Controllers/ApiBaseControllerTests.cs | 2 +- BlazorShop.UnitTests/Controllers/CartsControllerTests.cs | 2 +- BlazorShop.UnitTests/Controllers/ClothesControllerTests.cs | 2 +- .../Controllers/Filters/ApiExceptionFilterAttributeTests.cs | 2 +- .../Controllers/Filters/JwtTokenMiddlewareTests.cs | 2 +- BlazorShop.UnitTests/Controllers/HomeControllerTests.cs | 2 +- BlazorShop.UnitTests/Controllers/InvoicesControllerTests.cs | 2 +- BlazorShop.UnitTests/Controllers/MusicsControllerTests.cs | 2 +- BlazorShop.UnitTests/Controllers/OrdersControllerTests.cs | 2 +- BlazorShop.UnitTests/Controllers/PaymentsControllerTests.cs | 2 +- BlazorShop.UnitTests/Controllers/ReceiptsControllerTests.cs | 2 +- BlazorShop.UnitTests/Controllers/RolesControllerTests.cs | 2 +- BlazorShop.UnitTests/Controllers/SubscribersControllerTests.cs | 2 +- .../Controllers/SubscriptionsControllerTests.cs | 2 +- BlazorShop.UnitTests/Controllers/TodoItemsControllerTests.cs | 2 +- BlazorShop.UnitTests/Controllers/TodoListsControllerTests.cs | 2 +- BlazorShop.UnitTests/Controllers/UsersControllerTests.cs | 2 +- BlazorShop.UnitTests/Infrastructure/AccountServiceTests.cs | 2 +- BlazorShop.UnitTests/Infrastructure/EmailServiceTests.cs | 2 +- .../Infrastructure/Persistence/ApplicationDbContextSeedTests.cs | 2 +- .../Infrastructure/Persistence/ApplicationDbContextTests.cs | 2 +- BlazorShop.UnitTests/Infrastructure/RoleServiceTests.cs | 2 +- BlazorShop.UnitTests/Infrastructure/UserServiceTests.cs | 2 +- BlazorShop.UnitTests/WebClient/Services/MusicServiceTests.cs | 2 +- BlazorShop.UnitTests/WebClient/Services/OrderServiceTests.cs | 2 +- BlazorShop.UnitTests/WebClient/Services/RoleServiceTests.cs | 2 +- BlazorShop.UnitTests/_Imports.cs | 2 +- BlazorShop.WebApi/Controllers/AccountsController.cs | 2 +- BlazorShop.WebApi/Controllers/ApiBaseController.cs | 2 +- BlazorShop.WebApi/Controllers/CartsController.cs | 2 +- BlazorShop.WebApi/Controllers/ClothesController.cs | 2 +- BlazorShop.WebApi/Controllers/HomeController.cs | 2 +- BlazorShop.WebApi/Controllers/InvoicesController.cs | 2 +- BlazorShop.WebApi/Controllers/MusicsController.cs | 2 +- BlazorShop.WebApi/Controllers/OrdersController.cs | 2 +- BlazorShop.WebApi/Controllers/PaymentsController.cs | 2 +- BlazorShop.WebApi/Controllers/ReceiptsController.cs | 2 +- BlazorShop.WebApi/Controllers/RolesController.cs | 2 +- BlazorShop.WebApi/Controllers/SubscribersController.cs | 2 +- BlazorShop.WebApi/Controllers/SubscriptionsController.cs | 2 +- BlazorShop.WebApi/Controllers/TodoItemsController.cs | 2 +- BlazorShop.WebApi/Controllers/TodoListsController.cs | 2 +- BlazorShop.WebApi/Controllers/UsersController.cs | 2 +- BlazorShop.WebApi/Filters/ApiExceptionFilterAttribute.cs | 2 +- BlazorShop.WebApi/Filters/JwtTokenMiddleware.cs | 2 +- BlazorShop.WebApi/Program.cs | 2 +- BlazorShop.WebApi/_Imports.cs | 2 +- BlazorShop.WebClient/App.razor | 2 +- BlazorShop.WebClient/Auth/AuthStateProvider.cs | 2 +- BlazorShop.WebClient/Auth/AuthenticationService.cs | 2 +- BlazorShop.WebClient/Auth/IAuthenticationService.cs | 2 +- BlazorShop.WebClient/Auth/JwtTokenParser.cs | 2 +- BlazorShop.WebClient/AuthPolicies/AdminRoleRequirement.cs | 2 +- BlazorShop.WebClient/AuthPolicies/CustomerRoleRequirement.cs | 2 +- BlazorShop.WebClient/AuthPolicies/DefaultRoleRequirement.cs | 2 +- BlazorShop.WebClient/AuthPolicies/UserRoleRequirement.cs | 2 +- BlazorShop.WebClient/Interceptor/HttpInterceptorService.cs | 2 +- BlazorShop.WebClient/Interceptor/HttpResponseException.cs | 2 +- BlazorShop.WebClient/Interfaces/IAccountService.cs | 2 +- BlazorShop.WebClient/Interfaces/ICartService.cs | 2 +- BlazorShop.WebClient/Interfaces/IClotheService.cs | 2 +- BlazorShop.WebClient/Interfaces/IMusicService.cs | 2 +- BlazorShop.WebClient/Interfaces/IOrderService.cs | 2 +- BlazorShop.WebClient/Interfaces/IReceiptService.cs | 2 +- BlazorShop.WebClient/Interfaces/IRoleService.cs | 2 +- BlazorShop.WebClient/Interfaces/IStripeService.cs | 2 +- BlazorShop.WebClient/Interfaces/ISubscriberService.cs | 2 +- BlazorShop.WebClient/Interfaces/ISubscriptionService.cs | 2 +- BlazorShop.WebClient/Interfaces/ITodoItemService.cs | 2 +- BlazorShop.WebClient/Interfaces/ITodoListService.cs | 2 +- BlazorShop.WebClient/Interfaces/IUserService.cs | 2 +- BlazorShop.WebClient/Pages/Account/Login.razor | 2 +- BlazorShop.WebClient/Pages/Account/Logout.razor | 2 +- BlazorShop.WebClient/Pages/Account/Register.razor | 2 +- BlazorShop.WebClient/Pages/Account/ResetPassword.razor | 2 +- BlazorShop.WebClient/Pages/Account/VerifyAuth.razor | 2 +- BlazorShop.WebClient/Pages/Admin/Clothes/AddEditClothe.razor | 2 +- BlazorShop.WebClient/Pages/Admin/Clothes/Clothes.razor | 2 +- BlazorShop.WebClient/Pages/Admin/Musics/AddEditMusic.razor | 2 +- BlazorShop.WebClient/Pages/Admin/Musics/Musics.razor | 2 +- BlazorShop.WebClient/Pages/Admin/Roles/AddEditRole.razor | 2 +- BlazorShop.WebClient/Pages/Admin/Roles/Roles.razor | 2 +- BlazorShop.WebClient/Pages/Admin/Subscribers/Subscribers.razor | 2 +- .../Pages/Admin/Subscriptions/AddEditSubscription.razor | 2 +- .../Pages/Admin/Subscriptions/Subscriptions.razor | 2 +- BlazorShop.WebClient/Pages/Admin/Todos/Index.razor | 2 +- BlazorShop.WebClient/Pages/Admin/Todos/TodoItems.razor | 2 +- BlazorShop.WebClient/Pages/Admin/Todos/TodoLists.razor | 2 +- BlazorShop.WebClient/Pages/Admin/Todos/TodoState.razor | 2 +- BlazorShop.WebClient/Pages/Admin/Users/AddEditUser.razor | 2 +- BlazorShop.WebClient/Pages/Admin/Users/Users.razor | 2 +- BlazorShop.WebClient/Pages/Cart/Cart.razor | 2 +- BlazorShop.WebClient/Pages/Clothes/ClotheDetails.razor | 2 +- BlazorShop.WebClient/Pages/Clothes/Index.razor | 2 +- BlazorShop.WebClient/Pages/Index.razor | 2 +- BlazorShop.WebClient/Pages/Internal/Not-found.razor | 2 +- BlazorShop.WebClient/Pages/Internal/Server-error.razor | 2 +- BlazorShop.WebClient/Pages/Internal/Unauthorized.razor | 2 +- BlazorShop.WebClient/Pages/Musics/Index.razor | 2 +- BlazorShop.WebClient/Pages/Musics/MusicDetails.razor | 2 +- BlazorShop.WebClient/Pages/Orders/MyOrders.razor | 2 +- BlazorShop.WebClient/Pages/Orders/OrderSuccess.razor | 2 +- BlazorShop.WebClient/Pages/Orders/OrderView.razor | 2 +- BlazorShop.WebClient/Pages/Receipts/Receipts.razor | 2 +- BlazorShop.WebClient/Pages/Subscriptions/MySubscriptions.razor | 2 +- .../Pages/Subscriptions/SubscriptionSuccess.razor | 2 +- .../Pages/Subscriptions/UpdateSubscriptionSuccess.razor | 2 +- BlazorShop.WebClient/Pages/User/Profile.razor | 2 +- BlazorShop.WebClient/Program.cs | 2 +- BlazorShop.WebClient/Services/AccountService.cs | 2 +- BlazorShop.WebClient/Services/CartService.cs | 2 +- BlazorShop.WebClient/Services/ClotheService.cs | 2 +- BlazorShop.WebClient/Services/MusicService.cs | 2 +- BlazorShop.WebClient/Services/OrderService.cs | 2 +- BlazorShop.WebClient/Services/ReceiptService.cs | 2 +- BlazorShop.WebClient/Services/RoleService.cs | 2 +- BlazorShop.WebClient/Services/SessionStorageService.cs | 2 +- BlazorShop.WebClient/Services/StripeService.cs | 2 +- BlazorShop.WebClient/Services/SubscriberService.cs | 2 +- BlazorShop.WebClient/Services/SubscriptionService.cs | 2 +- BlazorShop.WebClient/Services/TodoItemService.cs | 2 +- BlazorShop.WebClient/Services/TodoListService.cs | 2 +- BlazorShop.WebClient/Services/UserService.cs | 2 +- BlazorShop.WebClient/Shared/AppState.razor | 2 +- BlazorShop.WebClient/Shared/JsInteropConstants.cs | 2 +- BlazorShop.WebClient/Shared/MainLayout.razor | 2 +- BlazorShop.WebClient/Shared/NavMenu.razor | 2 +- BlazorShop.WebClient/_Imports.cs | 2 +- BlazorShop.WebClient/_Imports.razor | 2 +- BlazorShop.WorkerService/Program.cs | 2 +- BlazorShop.WorkerService/Worker.cs | 2 +- BlazorShop.WorkerService/_Imports.cs | 2 +- 509 files changed, 509 insertions(+), 509 deletions(-) diff --git a/BlazorShop.Application/Commands/AccountCommand/ChangePasswordCommand.cs b/BlazorShop.Application/Commands/AccountCommand/ChangePasswordCommand.cs index f81f6729..65dc5239 100644 --- a/BlazorShop.Application/Commands/AccountCommand/ChangePasswordCommand.cs +++ b/BlazorShop.Application/Commands/AccountCommand/ChangePasswordCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/AccountCommand/LoginCommand.cs b/BlazorShop.Application/Commands/AccountCommand/LoginCommand.cs index b675f5d4..d31523d8 100644 --- a/BlazorShop.Application/Commands/AccountCommand/LoginCommand.cs +++ b/BlazorShop.Application/Commands/AccountCommand/LoginCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/AccountCommand/RegisterCommand.cs b/BlazorShop.Application/Commands/AccountCommand/RegisterCommand.cs index dad5a008..71bfaefc 100644 --- a/BlazorShop.Application/Commands/AccountCommand/RegisterCommand.cs +++ b/BlazorShop.Application/Commands/AccountCommand/RegisterCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/AccountCommand/ResetPasswordCommand.cs b/BlazorShop.Application/Commands/AccountCommand/ResetPasswordCommand.cs index 8456d7fb..207beff1 100644 --- a/BlazorShop.Application/Commands/AccountCommand/ResetPasswordCommand.cs +++ b/BlazorShop.Application/Commands/AccountCommand/ResetPasswordCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/CartCommand/CreateCartCommand.cs b/BlazorShop.Application/Commands/CartCommand/CreateCartCommand.cs index 04ab42ae..b5ac6981 100644 --- a/BlazorShop.Application/Commands/CartCommand/CreateCartCommand.cs +++ b/BlazorShop.Application/Commands/CartCommand/CreateCartCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/CartCommand/DeleteAllCartsCommand.cs b/BlazorShop.Application/Commands/CartCommand/DeleteAllCartsCommand.cs index 27860496..16e4a078 100644 --- a/BlazorShop.Application/Commands/CartCommand/DeleteAllCartsCommand.cs +++ b/BlazorShop.Application/Commands/CartCommand/DeleteAllCartsCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/CartCommand/DeleteCartCommand.cs b/BlazorShop.Application/Commands/CartCommand/DeleteCartCommand.cs index 9b2138f5..64c7e5d0 100644 --- a/BlazorShop.Application/Commands/CartCommand/DeleteCartCommand.cs +++ b/BlazorShop.Application/Commands/CartCommand/DeleteCartCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/CartCommand/UpdateCartCommand.cs b/BlazorShop.Application/Commands/CartCommand/UpdateCartCommand.cs index 3f4548bf..fe1ad31b 100644 --- a/BlazorShop.Application/Commands/CartCommand/UpdateCartCommand.cs +++ b/BlazorShop.Application/Commands/CartCommand/UpdateCartCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/ClotheCommand/CreateClotheCommand.cs b/BlazorShop.Application/Commands/ClotheCommand/CreateClotheCommand.cs index 2d2e1ed3..da86e896 100644 --- a/BlazorShop.Application/Commands/ClotheCommand/CreateClotheCommand.cs +++ b/BlazorShop.Application/Commands/ClotheCommand/CreateClotheCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/ClotheCommand/DeleteClotheCommand.cs b/BlazorShop.Application/Commands/ClotheCommand/DeleteClotheCommand.cs index 71c56e7a..8aa566ac 100644 --- a/BlazorShop.Application/Commands/ClotheCommand/DeleteClotheCommand.cs +++ b/BlazorShop.Application/Commands/ClotheCommand/DeleteClotheCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/ClotheCommand/UpdateClotheCommand.cs b/BlazorShop.Application/Commands/ClotheCommand/UpdateClotheCommand.cs index 616b4ad0..645eb02c 100644 --- a/BlazorShop.Application/Commands/ClotheCommand/UpdateClotheCommand.cs +++ b/BlazorShop.Application/Commands/ClotheCommand/UpdateClotheCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/InvoiceCommand/CreateInvoiceCommand.cs b/BlazorShop.Application/Commands/InvoiceCommand/CreateInvoiceCommand.cs index a2be7124..6d97d1a6 100644 --- a/BlazorShop.Application/Commands/InvoiceCommand/CreateInvoiceCommand.cs +++ b/BlazorShop.Application/Commands/InvoiceCommand/CreateInvoiceCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/InvoiceCommand/DeleteInvoiceCommand.cs b/BlazorShop.Application/Commands/InvoiceCommand/DeleteInvoiceCommand.cs index 353ec7bb..5b45d83b 100644 --- a/BlazorShop.Application/Commands/InvoiceCommand/DeleteInvoiceCommand.cs +++ b/BlazorShop.Application/Commands/InvoiceCommand/DeleteInvoiceCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/InvoiceCommand/UpdateInvoiceCommand.cs b/BlazorShop.Application/Commands/InvoiceCommand/UpdateInvoiceCommand.cs index 3e892b2d..6e23abae 100644 --- a/BlazorShop.Application/Commands/InvoiceCommand/UpdateInvoiceCommand.cs +++ b/BlazorShop.Application/Commands/InvoiceCommand/UpdateInvoiceCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/MusicCommand/CreateMusicCommand.cs b/BlazorShop.Application/Commands/MusicCommand/CreateMusicCommand.cs index 91f90160..eb80ef67 100644 --- a/BlazorShop.Application/Commands/MusicCommand/CreateMusicCommand.cs +++ b/BlazorShop.Application/Commands/MusicCommand/CreateMusicCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/MusicCommand/DeleteMusicCommand.cs b/BlazorShop.Application/Commands/MusicCommand/DeleteMusicCommand.cs index 45738313..cb76da82 100644 --- a/BlazorShop.Application/Commands/MusicCommand/DeleteMusicCommand.cs +++ b/BlazorShop.Application/Commands/MusicCommand/DeleteMusicCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/MusicCommand/UpdateMusicCommand.cs b/BlazorShop.Application/Commands/MusicCommand/UpdateMusicCommand.cs index 37a2ac2d..d1328407 100644 --- a/BlazorShop.Application/Commands/MusicCommand/UpdateMusicCommand.cs +++ b/BlazorShop.Application/Commands/MusicCommand/UpdateMusicCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/OrderCommand/CreateOrderCommand.cs b/BlazorShop.Application/Commands/OrderCommand/CreateOrderCommand.cs index 55108788..9a6fcc34 100644 --- a/BlazorShop.Application/Commands/OrderCommand/CreateOrderCommand.cs +++ b/BlazorShop.Application/Commands/OrderCommand/CreateOrderCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/OrderCommand/DeleteOrderCommand.cs b/BlazorShop.Application/Commands/OrderCommand/DeleteOrderCommand.cs index 4d19803b..b49fcf5a 100644 --- a/BlazorShop.Application/Commands/OrderCommand/DeleteOrderCommand.cs +++ b/BlazorShop.Application/Commands/OrderCommand/DeleteOrderCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/OrderCommand/UpdateOrderCommand.cs b/BlazorShop.Application/Commands/OrderCommand/UpdateOrderCommand.cs index 50c90d9d..cd4aa6e4 100644 --- a/BlazorShop.Application/Commands/OrderCommand/UpdateOrderCommand.cs +++ b/BlazorShop.Application/Commands/OrderCommand/UpdateOrderCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/ReceiptCommand/CreateReceiptCommand.cs b/BlazorShop.Application/Commands/ReceiptCommand/CreateReceiptCommand.cs index 27de73c1..bfabe4dd 100644 --- a/BlazorShop.Application/Commands/ReceiptCommand/CreateReceiptCommand.cs +++ b/BlazorShop.Application/Commands/ReceiptCommand/CreateReceiptCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/ReceiptCommand/DeleteReceiptCommand.cs b/BlazorShop.Application/Commands/ReceiptCommand/DeleteReceiptCommand.cs index 24745bf1..7a18ef11 100644 --- a/BlazorShop.Application/Commands/ReceiptCommand/DeleteReceiptCommand.cs +++ b/BlazorShop.Application/Commands/ReceiptCommand/DeleteReceiptCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/ReceiptCommand/UpdateReceiptCommand.cs b/BlazorShop.Application/Commands/ReceiptCommand/UpdateReceiptCommand.cs index 3e8090ba..d2dbc1df 100644 --- a/BlazorShop.Application/Commands/ReceiptCommand/UpdateReceiptCommand.cs +++ b/BlazorShop.Application/Commands/ReceiptCommand/UpdateReceiptCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/RoleCommand/CreateRoleCommand.cs b/BlazorShop.Application/Commands/RoleCommand/CreateRoleCommand.cs index b6062c16..2db004e1 100644 --- a/BlazorShop.Application/Commands/RoleCommand/CreateRoleCommand.cs +++ b/BlazorShop.Application/Commands/RoleCommand/CreateRoleCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/RoleCommand/DeleteRoleCommand.cs b/BlazorShop.Application/Commands/RoleCommand/DeleteRoleCommand.cs index 6cdd3a75..842f0512 100644 --- a/BlazorShop.Application/Commands/RoleCommand/DeleteRoleCommand.cs +++ b/BlazorShop.Application/Commands/RoleCommand/DeleteRoleCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/RoleCommand/UpdateRoleCommand.cs b/BlazorShop.Application/Commands/RoleCommand/UpdateRoleCommand.cs index 72d6e3c4..72907ead 100644 --- a/BlazorShop.Application/Commands/RoleCommand/UpdateRoleCommand.cs +++ b/BlazorShop.Application/Commands/RoleCommand/UpdateRoleCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/SubscriberCommand/CreateSubscriberCommand.cs b/BlazorShop.Application/Commands/SubscriberCommand/CreateSubscriberCommand.cs index 3f4eaf6f..853b575c 100644 --- a/BlazorShop.Application/Commands/SubscriberCommand/CreateSubscriberCommand.cs +++ b/BlazorShop.Application/Commands/SubscriberCommand/CreateSubscriberCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/SubscriberCommand/DeleteSubscriberCommand.cs b/BlazorShop.Application/Commands/SubscriberCommand/DeleteSubscriberCommand.cs index ac664cbd..ebf7a37b 100644 --- a/BlazorShop.Application/Commands/SubscriberCommand/DeleteSubscriberCommand.cs +++ b/BlazorShop.Application/Commands/SubscriberCommand/DeleteSubscriberCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/SubscriberCommand/UpdateCreatedSubscriberCommand.cs b/BlazorShop.Application/Commands/SubscriberCommand/UpdateCreatedSubscriberCommand.cs index 68df500e..c54f2c2b 100644 --- a/BlazorShop.Application/Commands/SubscriberCommand/UpdateCreatedSubscriberCommand.cs +++ b/BlazorShop.Application/Commands/SubscriberCommand/UpdateCreatedSubscriberCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/SubscriberCommand/UpdateSubscriberCommand.cs b/BlazorShop.Application/Commands/SubscriberCommand/UpdateSubscriberCommand.cs index 36102854..4a36e33f 100644 --- a/BlazorShop.Application/Commands/SubscriberCommand/UpdateSubscriberCommand.cs +++ b/BlazorShop.Application/Commands/SubscriberCommand/UpdateSubscriberCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/SubscriberCommand/UpdateSubscriberStatusCommand.cs b/BlazorShop.Application/Commands/SubscriberCommand/UpdateSubscriberStatusCommand.cs index 7c0f61ce..b6a355ea 100644 --- a/BlazorShop.Application/Commands/SubscriberCommand/UpdateSubscriberStatusCommand.cs +++ b/BlazorShop.Application/Commands/SubscriberCommand/UpdateSubscriberStatusCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/SubscriptionCommand/CreateSubscriptionCommand.cs b/BlazorShop.Application/Commands/SubscriptionCommand/CreateSubscriptionCommand.cs index 98595f5f..29b7d88b 100644 --- a/BlazorShop.Application/Commands/SubscriptionCommand/CreateSubscriptionCommand.cs +++ b/BlazorShop.Application/Commands/SubscriptionCommand/CreateSubscriptionCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/SubscriptionCommand/DeleteSubscriptionCommand.cs b/BlazorShop.Application/Commands/SubscriptionCommand/DeleteSubscriptionCommand.cs index 647b5d59..2392a449 100644 --- a/BlazorShop.Application/Commands/SubscriptionCommand/DeleteSubscriptionCommand.cs +++ b/BlazorShop.Application/Commands/SubscriptionCommand/DeleteSubscriptionCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/SubscriptionCommand/UpdateSubscriptionCommand.cs b/BlazorShop.Application/Commands/SubscriptionCommand/UpdateSubscriptionCommand.cs index 01c23f8e..acf45828 100644 --- a/BlazorShop.Application/Commands/SubscriptionCommand/UpdateSubscriptionCommand.cs +++ b/BlazorShop.Application/Commands/SubscriptionCommand/UpdateSubscriptionCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/TodoItemCommand/CreateTodoItemCommand.cs b/BlazorShop.Application/Commands/TodoItemCommand/CreateTodoItemCommand.cs index 36fd6eca..df205a01 100644 --- a/BlazorShop.Application/Commands/TodoItemCommand/CreateTodoItemCommand.cs +++ b/BlazorShop.Application/Commands/TodoItemCommand/CreateTodoItemCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/TodoItemCommand/DeleteTodoItemCommand.cs b/BlazorShop.Application/Commands/TodoItemCommand/DeleteTodoItemCommand.cs index 971eafcb..8cd23f09 100644 --- a/BlazorShop.Application/Commands/TodoItemCommand/DeleteTodoItemCommand.cs +++ b/BlazorShop.Application/Commands/TodoItemCommand/DeleteTodoItemCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/TodoItemCommand/UpdateTodoItemCommand.cs b/BlazorShop.Application/Commands/TodoItemCommand/UpdateTodoItemCommand.cs index feed3e92..d316474c 100644 --- a/BlazorShop.Application/Commands/TodoItemCommand/UpdateTodoItemCommand.cs +++ b/BlazorShop.Application/Commands/TodoItemCommand/UpdateTodoItemCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/TodoListCommand/CreateTodoListCommand.cs b/BlazorShop.Application/Commands/TodoListCommand/CreateTodoListCommand.cs index 0d60201f..b6f34dc9 100644 --- a/BlazorShop.Application/Commands/TodoListCommand/CreateTodoListCommand.cs +++ b/BlazorShop.Application/Commands/TodoListCommand/CreateTodoListCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/TodoListCommand/DeleteTodoListCommand.cs b/BlazorShop.Application/Commands/TodoListCommand/DeleteTodoListCommand.cs index cce94a91..8b985a24 100644 --- a/BlazorShop.Application/Commands/TodoListCommand/DeleteTodoListCommand.cs +++ b/BlazorShop.Application/Commands/TodoListCommand/DeleteTodoListCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/TodoListCommand/UpdateTodoListCommand.cs b/BlazorShop.Application/Commands/TodoListCommand/UpdateTodoListCommand.cs index ac6cd0dd..4b3c83ba 100644 --- a/BlazorShop.Application/Commands/TodoListCommand/UpdateTodoListCommand.cs +++ b/BlazorShop.Application/Commands/TodoListCommand/UpdateTodoListCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/UserCommand/ActivateUserCommand.cs b/BlazorShop.Application/Commands/UserCommand/ActivateUserCommand.cs index 61a3a960..625f64ad 100644 --- a/BlazorShop.Application/Commands/UserCommand/ActivateUserCommand.cs +++ b/BlazorShop.Application/Commands/UserCommand/ActivateUserCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/UserCommand/AssignUserToRoleCommand.cs b/BlazorShop.Application/Commands/UserCommand/AssignUserToRoleCommand.cs index e7a7401e..72c7527b 100644 --- a/BlazorShop.Application/Commands/UserCommand/AssignUserToRoleCommand.cs +++ b/BlazorShop.Application/Commands/UserCommand/AssignUserToRoleCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/UserCommand/CreateUserCommand.cs b/BlazorShop.Application/Commands/UserCommand/CreateUserCommand.cs index bf98bc10..9badf04c 100644 --- a/BlazorShop.Application/Commands/UserCommand/CreateUserCommand.cs +++ b/BlazorShop.Application/Commands/UserCommand/CreateUserCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/UserCommand/DeleteUserCommand.cs b/BlazorShop.Application/Commands/UserCommand/DeleteUserCommand.cs index 7ff0c733..b0a9715d 100644 --- a/BlazorShop.Application/Commands/UserCommand/DeleteUserCommand.cs +++ b/BlazorShop.Application/Commands/UserCommand/DeleteUserCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/UserCommand/UpdateUserCommand.cs b/BlazorShop.Application/Commands/UserCommand/UpdateUserCommand.cs index cadb4907..66018dd7 100644 --- a/BlazorShop.Application/Commands/UserCommand/UpdateUserCommand.cs +++ b/BlazorShop.Application/Commands/UserCommand/UpdateUserCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Commands/UserCommand/UpdateUserEmailCommand.cs b/BlazorShop.Application/Commands/UserCommand/UpdateUserEmailCommand.cs index 06fe0297..a51aa0d9 100644 --- a/BlazorShop.Application/Commands/UserCommand/UpdateUserEmailCommand.cs +++ b/BlazorShop.Application/Commands/UserCommand/UpdateUserEmailCommand.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Common/Behaviours/UnhandledExceptionBehaviour.cs b/BlazorShop.Application/Common/Behaviours/UnhandledExceptionBehaviour.cs index 2c7a2d5b..c19ff817 100644 --- a/BlazorShop.Application/Common/Behaviours/UnhandledExceptionBehaviour.cs +++ b/BlazorShop.Application/Common/Behaviours/UnhandledExceptionBehaviour.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Common/Behaviours/ValidationBehaviour.cs b/BlazorShop.Application/Common/Behaviours/ValidationBehaviour.cs index 0104efe1..d3edc87c 100644 --- a/BlazorShop.Application/Common/Behaviours/ValidationBehaviour.cs +++ b/BlazorShop.Application/Common/Behaviours/ValidationBehaviour.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Common/Exceptions/ValidationException.cs b/BlazorShop.Application/Common/Exceptions/ValidationException.cs index c73b0def..b6ad4307 100644 --- a/BlazorShop.Application/Common/Exceptions/ValidationException.cs +++ b/BlazorShop.Application/Common/Exceptions/ValidationException.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Common/Interfaces/IAccountService.cs b/BlazorShop.Application/Common/Interfaces/IAccountService.cs index fb0e3200..fafe4616 100644 --- a/BlazorShop.Application/Common/Interfaces/IAccountService.cs +++ b/BlazorShop.Application/Common/Interfaces/IAccountService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Common/Interfaces/IApplicationDbContext.cs b/BlazorShop.Application/Common/Interfaces/IApplicationDbContext.cs index f010d9c9..43da9384 100644 --- a/BlazorShop.Application/Common/Interfaces/IApplicationDbContext.cs +++ b/BlazorShop.Application/Common/Interfaces/IApplicationDbContext.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Common/Interfaces/IDateTimeService.cs b/BlazorShop.Application/Common/Interfaces/IDateTimeService.cs index c2dfaf76..5ba853b2 100644 --- a/BlazorShop.Application/Common/Interfaces/IDateTimeService.cs +++ b/BlazorShop.Application/Common/Interfaces/IDateTimeService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Common/Interfaces/IEmailService.cs b/BlazorShop.Application/Common/Interfaces/IEmailService.cs index d321c090..434007d6 100644 --- a/BlazorShop.Application/Common/Interfaces/IEmailService.cs +++ b/BlazorShop.Application/Common/Interfaces/IEmailService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Common/Interfaces/IRoleService.cs b/BlazorShop.Application/Common/Interfaces/IRoleService.cs index 13745fa0..2a1da74b 100644 --- a/BlazorShop.Application/Common/Interfaces/IRoleService.cs +++ b/BlazorShop.Application/Common/Interfaces/IRoleService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Common/Interfaces/IUserService.cs b/BlazorShop.Application/Common/Interfaces/IUserService.cs index 8de1630d..2a9de85f 100644 --- a/BlazorShop.Application/Common/Interfaces/IUserService.cs +++ b/BlazorShop.Application/Common/Interfaces/IUserService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Common/Mappings/IMapFrom.cs b/BlazorShop.Application/Common/Mappings/IMapFrom.cs index 2919ccc2..fb431d67 100644 --- a/BlazorShop.Application/Common/Mappings/IMapFrom.cs +++ b/BlazorShop.Application/Common/Mappings/IMapFrom.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Common/Mappings/MappingExtensions.cs b/BlazorShop.Application/Common/Mappings/MappingExtensions.cs index a595ab8f..dfeae677 100644 --- a/BlazorShop.Application/Common/Mappings/MappingExtensions.cs +++ b/BlazorShop.Application/Common/Mappings/MappingExtensions.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Common/Mappings/MappingProfile.cs b/BlazorShop.Application/Common/Mappings/MappingProfile.cs index 5c13ee22..07033118 100644 --- a/BlazorShop.Application/Common/Mappings/MappingProfile.cs +++ b/BlazorShop.Application/Common/Mappings/MappingProfile.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Common/Models/EmailSettings.cs b/BlazorShop.Application/Common/Models/EmailSettings.cs index 0476ea27..e3fe9543 100644 --- a/BlazorShop.Application/Common/Models/EmailSettings.cs +++ b/BlazorShop.Application/Common/Models/EmailSettings.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Common/Models/JwtTokenConfig.cs b/BlazorShop.Application/Common/Models/JwtTokenConfig.cs index 9c764647..aaeebe70 100644 --- a/BlazorShop.Application/Common/Models/JwtTokenConfig.cs +++ b/BlazorShop.Application/Common/Models/JwtTokenConfig.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Common/Models/JwtTokenResponse.cs b/BlazorShop.Application/Common/Models/JwtTokenResponse.cs index 00e00147..93e89431 100644 --- a/BlazorShop.Application/Common/Models/JwtTokenResponse.cs +++ b/BlazorShop.Application/Common/Models/JwtTokenResponse.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Common/Models/RequestResponse.cs b/BlazorShop.Application/Common/Models/RequestResponse.cs index f8fd57ed..26e45104 100644 --- a/BlazorShop.Application/Common/Models/RequestResponse.cs +++ b/BlazorShop.Application/Common/Models/RequestResponse.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Common/Models/Result.cs b/BlazorShop.Application/Common/Models/Result.cs index 77c95349..1866b440 100644 --- a/BlazorShop.Application/Common/Models/Result.cs +++ b/BlazorShop.Application/Common/Models/Result.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/DependencyInjection.cs b/BlazorShop.Application/DependencyInjection.cs index 5bff6677..5a5c040c 100644 --- a/BlazorShop.Application/DependencyInjection.cs +++ b/BlazorShop.Application/DependencyInjection.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/AccountHandler/ChangePasswordCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/AccountHandler/ChangePasswordCommandHandler.cs index e6f87f91..1e027542 100644 --- a/BlazorShop.Application/Handlers/Commands/AccountHandler/ChangePasswordCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/AccountHandler/ChangePasswordCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/AccountHandler/LoginCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/AccountHandler/LoginCommandHandler.cs index 1e27638b..262c8aad 100644 --- a/BlazorShop.Application/Handlers/Commands/AccountHandler/LoginCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/AccountHandler/LoginCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/AccountHandler/RegisterCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/AccountHandler/RegisterCommandHandler.cs index 061dbe67..886f973c 100644 --- a/BlazorShop.Application/Handlers/Commands/AccountHandler/RegisterCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/AccountHandler/RegisterCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/AccountHandler/ResetPasswordCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/AccountHandler/ResetPasswordCommandHandler.cs index 019d5d2b..905ef38d 100644 --- a/BlazorShop.Application/Handlers/Commands/AccountHandler/ResetPasswordCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/AccountHandler/ResetPasswordCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/CartHandler/CreateCartCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/CartHandler/CreateCartCommandHandler.cs index 7ec09296..58cdc300 100644 --- a/BlazorShop.Application/Handlers/Commands/CartHandler/CreateCartCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/CartHandler/CreateCartCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/CartHandler/DeleteAllCartsCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/CartHandler/DeleteAllCartsCommandHandler.cs index 73fb45c6..fc87da70 100644 --- a/BlazorShop.Application/Handlers/Commands/CartHandler/DeleteAllCartsCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/CartHandler/DeleteAllCartsCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/CartHandler/DeleteCartCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/CartHandler/DeleteCartCommandHandler.cs index 6dbd958d..21459db6 100644 --- a/BlazorShop.Application/Handlers/Commands/CartHandler/DeleteCartCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/CartHandler/DeleteCartCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/CartHandler/UpdateCartCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/CartHandler/UpdateCartCommandHandler.cs index 7766e8dc..305e398e 100644 --- a/BlazorShop.Application/Handlers/Commands/CartHandler/UpdateCartCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/CartHandler/UpdateCartCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/ClotheHandler/CreateClotheCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/ClotheHandler/CreateClotheCommandHandler.cs index f7f0ddc0..adda2067 100644 --- a/BlazorShop.Application/Handlers/Commands/ClotheHandler/CreateClotheCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/ClotheHandler/CreateClotheCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/ClotheHandler/DeleteClotheCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/ClotheHandler/DeleteClotheCommandHandler.cs index 128e28f0..faf2476e 100644 --- a/BlazorShop.Application/Handlers/Commands/ClotheHandler/DeleteClotheCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/ClotheHandler/DeleteClotheCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/ClotheHandler/UpdateClotheCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/ClotheHandler/UpdateClotheCommandHandler.cs index e885c740..bc181827 100644 --- a/BlazorShop.Application/Handlers/Commands/ClotheHandler/UpdateClotheCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/ClotheHandler/UpdateClotheCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/InvoiceHandler/CreateInvoiceCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/InvoiceHandler/CreateInvoiceCommandHandler.cs index 2ce15c99..8cc9cfbf 100644 --- a/BlazorShop.Application/Handlers/Commands/InvoiceHandler/CreateInvoiceCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/InvoiceHandler/CreateInvoiceCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/InvoiceHandler/DeleteInvoiceCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/InvoiceHandler/DeleteInvoiceCommandHandler.cs index a2f6e9cc..a6ee64d0 100644 --- a/BlazorShop.Application/Handlers/Commands/InvoiceHandler/DeleteInvoiceCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/InvoiceHandler/DeleteInvoiceCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/InvoiceHandler/UpdateInvoiceCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/InvoiceHandler/UpdateInvoiceCommandHandler.cs index 18b59dea..7ae0e95d 100644 --- a/BlazorShop.Application/Handlers/Commands/InvoiceHandler/UpdateInvoiceCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/InvoiceHandler/UpdateInvoiceCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/MusicHandler/CreateMusicCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/MusicHandler/CreateMusicCommandHandler.cs index 6e320cef..23049a39 100644 --- a/BlazorShop.Application/Handlers/Commands/MusicHandler/CreateMusicCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/MusicHandler/CreateMusicCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/MusicHandler/DeleteMusicCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/MusicHandler/DeleteMusicCommandHandler.cs index 9cc190c4..f2bf5bcf 100644 --- a/BlazorShop.Application/Handlers/Commands/MusicHandler/DeleteMusicCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/MusicHandler/DeleteMusicCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/MusicHandler/UpdateMusicCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/MusicHandler/UpdateMusicCommandHandler.cs index a7ea60ea..d212dc9f 100644 --- a/BlazorShop.Application/Handlers/Commands/MusicHandler/UpdateMusicCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/MusicHandler/UpdateMusicCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/OrderHandler/CreateOrderCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/OrderHandler/CreateOrderCommandHandler.cs index cdb4a485..0ca47bd1 100644 --- a/BlazorShop.Application/Handlers/Commands/OrderHandler/CreateOrderCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/OrderHandler/CreateOrderCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/OrderHandler/DeleteOrderCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/OrderHandler/DeleteOrderCommandHandler.cs index 18dd05d2..be733d37 100644 --- a/BlazorShop.Application/Handlers/Commands/OrderHandler/DeleteOrderCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/OrderHandler/DeleteOrderCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/OrderHandler/UpdateOrderCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/OrderHandler/UpdateOrderCommandHandler.cs index 289cc4ff..88d14e2f 100644 --- a/BlazorShop.Application/Handlers/Commands/OrderHandler/UpdateOrderCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/OrderHandler/UpdateOrderCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/ReceiptHandler/CreateReceiptCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/ReceiptHandler/CreateReceiptCommandHandler.cs index 137fe428..c96dedc3 100644 --- a/BlazorShop.Application/Handlers/Commands/ReceiptHandler/CreateReceiptCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/ReceiptHandler/CreateReceiptCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/ReceiptHandler/DeleteReceiptCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/ReceiptHandler/DeleteReceiptCommandHandler.cs index 193aec7b..9b4de4fe 100644 --- a/BlazorShop.Application/Handlers/Commands/ReceiptHandler/DeleteReceiptCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/ReceiptHandler/DeleteReceiptCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/ReceiptHandler/UpdateReceiptCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/ReceiptHandler/UpdateReceiptCommandHandler.cs index 8e0b01fb..4bcc43c3 100644 --- a/BlazorShop.Application/Handlers/Commands/ReceiptHandler/UpdateReceiptCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/ReceiptHandler/UpdateReceiptCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/RoleHandler/CreateRoleCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/RoleHandler/CreateRoleCommandHandler.cs index 57f1b2cf..94fd0e2e 100644 --- a/BlazorShop.Application/Handlers/Commands/RoleHandler/CreateRoleCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/RoleHandler/CreateRoleCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/RoleHandler/DeleteRoleCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/RoleHandler/DeleteRoleCommandHandler.cs index 74e97cfb..94bbebe1 100644 --- a/BlazorShop.Application/Handlers/Commands/RoleHandler/DeleteRoleCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/RoleHandler/DeleteRoleCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/RoleHandler/UpdateRoleCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/RoleHandler/UpdateRoleCommandHandler.cs index 863ff48e..32857cb4 100644 --- a/BlazorShop.Application/Handlers/Commands/RoleHandler/UpdateRoleCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/RoleHandler/UpdateRoleCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/SubscriberHandler/CreateSubscriberCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/SubscriberHandler/CreateSubscriberCommandHandler.cs index dc1d738c..498ee3ba 100644 --- a/BlazorShop.Application/Handlers/Commands/SubscriberHandler/CreateSubscriberCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/SubscriberHandler/CreateSubscriberCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/SubscriberHandler/DeleteSubscriberCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/SubscriberHandler/DeleteSubscriberCommandHandler.cs index 04701273..6e17b157 100644 --- a/BlazorShop.Application/Handlers/Commands/SubscriberHandler/DeleteSubscriberCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/SubscriberHandler/DeleteSubscriberCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/SubscriberHandler/UpdateCreatedSubscriberCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/SubscriberHandler/UpdateCreatedSubscriberCommandHandler.cs index 9c2fcd9b..58764ff8 100644 --- a/BlazorShop.Application/Handlers/Commands/SubscriberHandler/UpdateCreatedSubscriberCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/SubscriberHandler/UpdateCreatedSubscriberCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/SubscriberHandler/UpdateSubscriberCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/SubscriberHandler/UpdateSubscriberCommandHandler.cs index a10d86dc..21caae5f 100644 --- a/BlazorShop.Application/Handlers/Commands/SubscriberHandler/UpdateSubscriberCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/SubscriberHandler/UpdateSubscriberCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/SubscriberHandler/UpdateSubscriberStatusCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/SubscriberHandler/UpdateSubscriberStatusCommandHandler.cs index ad6f109c..2e9e0198 100644 --- a/BlazorShop.Application/Handlers/Commands/SubscriberHandler/UpdateSubscriberStatusCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/SubscriberHandler/UpdateSubscriberStatusCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/SubscriptionHandler/CreateSubscriptionCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/SubscriptionHandler/CreateSubscriptionCommandHandler.cs index c70b96d3..05a93fec 100644 --- a/BlazorShop.Application/Handlers/Commands/SubscriptionHandler/CreateSubscriptionCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/SubscriptionHandler/CreateSubscriptionCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/SubscriptionHandler/DeleteSubscriptionCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/SubscriptionHandler/DeleteSubscriptionCommandHandler.cs index c30d171d..60d7a23e 100644 --- a/BlazorShop.Application/Handlers/Commands/SubscriptionHandler/DeleteSubscriptionCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/SubscriptionHandler/DeleteSubscriptionCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/SubscriptionHandler/UpdateSubscriptionCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/SubscriptionHandler/UpdateSubscriptionCommandHandler.cs index 4d257e22..4d59bacd 100644 --- a/BlazorShop.Application/Handlers/Commands/SubscriptionHandler/UpdateSubscriptionCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/SubscriptionHandler/UpdateSubscriptionCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/TodoItemHandler/CreateTodoItemCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/TodoItemHandler/CreateTodoItemCommandHandler.cs index 6edfbb01..f2acf851 100644 --- a/BlazorShop.Application/Handlers/Commands/TodoItemHandler/CreateTodoItemCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/TodoItemHandler/CreateTodoItemCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/TodoItemHandler/DeleteTodoItemCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/TodoItemHandler/DeleteTodoItemCommandHandler.cs index 69f9aae4..0026bf35 100644 --- a/BlazorShop.Application/Handlers/Commands/TodoItemHandler/DeleteTodoItemCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/TodoItemHandler/DeleteTodoItemCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/TodoItemHandler/UpdateTodoItemCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/TodoItemHandler/UpdateTodoItemCommandHandler.cs index ad8cfbe9..2fc3a616 100644 --- a/BlazorShop.Application/Handlers/Commands/TodoItemHandler/UpdateTodoItemCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/TodoItemHandler/UpdateTodoItemCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/TodoListHandler/CreateTodoListCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/TodoListHandler/CreateTodoListCommandHandler.cs index 6bb0b207..c5e82fa4 100644 --- a/BlazorShop.Application/Handlers/Commands/TodoListHandler/CreateTodoListCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/TodoListHandler/CreateTodoListCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/TodoListHandler/DeleteTodoListCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/TodoListHandler/DeleteTodoListCommandHandler.cs index c9924685..99ce5e65 100644 --- a/BlazorShop.Application/Handlers/Commands/TodoListHandler/DeleteTodoListCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/TodoListHandler/DeleteTodoListCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/TodoListHandler/UpdateTodoListCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/TodoListHandler/UpdateTodoListCommandHandler.cs index e2868f1e..ba054b52 100644 --- a/BlazorShop.Application/Handlers/Commands/TodoListHandler/UpdateTodoListCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/TodoListHandler/UpdateTodoListCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/UserHandler/ActivateUserCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/UserHandler/ActivateUserCommandHandler.cs index de7a5ae8..45e87325 100644 --- a/BlazorShop.Application/Handlers/Commands/UserHandler/ActivateUserCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/UserHandler/ActivateUserCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/UserHandler/AssignUserToRoleCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/UserHandler/AssignUserToRoleCommandHandler.cs index 67e0f67e..d74937a6 100644 --- a/BlazorShop.Application/Handlers/Commands/UserHandler/AssignUserToRoleCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/UserHandler/AssignUserToRoleCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/UserHandler/CreateUserCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/UserHandler/CreateUserCommandHandler.cs index 3a114835..7e2ae3c0 100644 --- a/BlazorShop.Application/Handlers/Commands/UserHandler/CreateUserCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/UserHandler/CreateUserCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/UserHandler/DeleteUserCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/UserHandler/DeleteUserCommandHandler.cs index 600d96c1..2ba9d5b2 100644 --- a/BlazorShop.Application/Handlers/Commands/UserHandler/DeleteUserCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/UserHandler/DeleteUserCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/UserHandler/UpdateUserCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/UserHandler/UpdateUserCommandHandler.cs index 2f02e3a7..aca4700d 100644 --- a/BlazorShop.Application/Handlers/Commands/UserHandler/UpdateUserCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/UserHandler/UpdateUserCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Commands/UserHandler/UpdateUserEmailCommandHandler.cs b/BlazorShop.Application/Handlers/Commands/UserHandler/UpdateUserEmailCommandHandler.cs index 51bf1089..add12e8a 100644 --- a/BlazorShop.Application/Handlers/Commands/UserHandler/UpdateUserEmailCommandHandler.cs +++ b/BlazorShop.Application/Handlers/Commands/UserHandler/UpdateUserEmailCommandHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/CartHandler/GetCartByIdQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/CartHandler/GetCartByIdQueryHandler.cs index b0981e1c..76297c5a 100644 --- a/BlazorShop.Application/Handlers/Queries/CartHandler/GetCartByIdQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/CartHandler/GetCartByIdQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/CartHandler/GetCartsCountQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/CartHandler/GetCartsCountQueryHandler.cs index e398437c..9896ad9a 100644 --- a/BlazorShop.Application/Handlers/Queries/CartHandler/GetCartsCountQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/CartHandler/GetCartsCountQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/CartHandler/GetCartsQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/CartHandler/GetCartsQueryHandler.cs index f0e58dd5..a395c5ac 100644 --- a/BlazorShop.Application/Handlers/Queries/CartHandler/GetCartsQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/CartHandler/GetCartsQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/ClotheHandler/GetClotheByIdQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/ClotheHandler/GetClotheByIdQueryHandler.cs index 53876f1e..8d289398 100644 --- a/BlazorShop.Application/Handlers/Queries/ClotheHandler/GetClotheByIdQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/ClotheHandler/GetClotheByIdQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/ClotheHandler/GetClothesQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/ClotheHandler/GetClothesQueryHandler.cs index 0d325e0c..c536d2b5 100644 --- a/BlazorShop.Application/Handlers/Queries/ClotheHandler/GetClothesQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/ClotheHandler/GetClothesQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/InvoiceHandler/GetInvoiceByIdQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/InvoiceHandler/GetInvoiceByIdQueryHandler.cs index 926b9954..37598122 100644 --- a/BlazorShop.Application/Handlers/Queries/InvoiceHandler/GetInvoiceByIdQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/InvoiceHandler/GetInvoiceByIdQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/InvoiceHandler/GetInvoicesQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/InvoiceHandler/GetInvoicesQueryHandler.cs index 1e48e204..430b610a 100644 --- a/BlazorShop.Application/Handlers/Queries/InvoiceHandler/GetInvoicesQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/InvoiceHandler/GetInvoicesQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/MusicHandler/GetMusicByIdQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/MusicHandler/GetMusicByIdQueryHandler.cs index e49ce799..034dbb9a 100644 --- a/BlazorShop.Application/Handlers/Queries/MusicHandler/GetMusicByIdQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/MusicHandler/GetMusicByIdQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/MusicHandler/GetMusicsQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/MusicHandler/GetMusicsQueryHandler.cs index 7f33ad05..8319564d 100644 --- a/BlazorShop.Application/Handlers/Queries/MusicHandler/GetMusicsQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/MusicHandler/GetMusicsQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/OrderHandler/GetOrderByIdQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/OrderHandler/GetOrderByIdQueryHandler.cs index 21f346d7..8f33ea00 100644 --- a/BlazorShop.Application/Handlers/Queries/OrderHandler/GetOrderByIdQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/OrderHandler/GetOrderByIdQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/OrderHandler/GetOrdersQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/OrderHandler/GetOrdersQueryHandler.cs index 51bfd262..5220d876 100644 --- a/BlazorShop.Application/Handlers/Queries/OrderHandler/GetOrdersQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/OrderHandler/GetOrdersQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/ReceiptHandler/GetReceiptByIdQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/ReceiptHandler/GetReceiptByIdQueryHandler.cs index 3de09380..d6f7270c 100644 --- a/BlazorShop.Application/Handlers/Queries/ReceiptHandler/GetReceiptByIdQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/ReceiptHandler/GetReceiptByIdQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/ReceiptHandler/GetReceiptsQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/ReceiptHandler/GetReceiptsQueryHandler.cs index e1f34788..d02c9747 100644 --- a/BlazorShop.Application/Handlers/Queries/ReceiptHandler/GetReceiptsQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/ReceiptHandler/GetReceiptsQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/RoleHandler/GetRoleByIdQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/RoleHandler/GetRoleByIdQueryHandler.cs index 8c5958c5..923ad341 100644 --- a/BlazorShop.Application/Handlers/Queries/RoleHandler/GetRoleByIdQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/RoleHandler/GetRoleByIdQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/RoleHandler/GetRoleByNormalizedNameQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/RoleHandler/GetRoleByNormalizedNameQueryHandler.cs index 0fe48bb8..0fe2d7f8 100644 --- a/BlazorShop.Application/Handlers/Queries/RoleHandler/GetRoleByNormalizedNameQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/RoleHandler/GetRoleByNormalizedNameQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/RoleHandler/GetRolesForAdminQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/RoleHandler/GetRolesForAdminQueryHandler.cs index c0b59beb..d5594c26 100644 --- a/BlazorShop.Application/Handlers/Queries/RoleHandler/GetRolesForAdminQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/RoleHandler/GetRolesForAdminQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/RoleHandler/GetRolesQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/RoleHandler/GetRolesQueryHandler.cs index 6661c3cb..e0d6cef7 100644 --- a/BlazorShop.Application/Handlers/Queries/RoleHandler/GetRolesQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/RoleHandler/GetRolesQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/SubscriberHandler/GetSubscriberByIdQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/SubscriberHandler/GetSubscriberByIdQueryHandler.cs index 5c471cab..25cf2faa 100644 --- a/BlazorShop.Application/Handlers/Queries/SubscriberHandler/GetSubscriberByIdQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/SubscriberHandler/GetSubscriberByIdQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/SubscriberHandler/GetSubscribersQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/SubscriberHandler/GetSubscribersQueryHandler.cs index f72a9ccc..98b7d93b 100644 --- a/BlazorShop.Application/Handlers/Queries/SubscriberHandler/GetSubscribersQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/SubscriberHandler/GetSubscribersQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/SubscriberHandler/GetUserSubscribersQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/SubscriberHandler/GetUserSubscribersQueryHandler.cs index 996231f0..8de4b348 100644 --- a/BlazorShop.Application/Handlers/Queries/SubscriberHandler/GetUserSubscribersQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/SubscriberHandler/GetUserSubscribersQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/SubscriptionHandler/GetSubscriptionByIdQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/SubscriptionHandler/GetSubscriptionByIdQueryHandler.cs index 8b9581af..361c6c94 100644 --- a/BlazorShop.Application/Handlers/Queries/SubscriptionHandler/GetSubscriptionByIdQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/SubscriptionHandler/GetSubscriptionByIdQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/SubscriptionHandler/GetSubscriptionsQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/SubscriptionHandler/GetSubscriptionsQueryHandler.cs index 093cd053..0197ed62 100644 --- a/BlazorShop.Application/Handlers/Queries/SubscriptionHandler/GetSubscriptionsQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/SubscriptionHandler/GetSubscriptionsQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/TodoItemHandler/GetTodoItemByIdQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/TodoItemHandler/GetTodoItemByIdQueryHandler.cs index 64af68e4..6c12bf68 100644 --- a/BlazorShop.Application/Handlers/Queries/TodoItemHandler/GetTodoItemByIdQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/TodoItemHandler/GetTodoItemByIdQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/TodoItemHandler/GetTodoItemsQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/TodoItemHandler/GetTodoItemsQueryHandler.cs index 9e874853..97b4d3dc 100644 --- a/BlazorShop.Application/Handlers/Queries/TodoItemHandler/GetTodoItemsQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/TodoItemHandler/GetTodoItemsQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/TodoListHandler/GetTodoListByIdQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/TodoListHandler/GetTodoListByIdQueryHandler.cs index 5fa3669b..e811119d 100644 --- a/BlazorShop.Application/Handlers/Queries/TodoListHandler/GetTodoListByIdQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/TodoListHandler/GetTodoListByIdQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/TodoListHandler/GetTodoListsQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/TodoListHandler/GetTodoListsQueryHandler.cs index 547fa0d3..faab96d5 100644 --- a/BlazorShop.Application/Handlers/Queries/TodoListHandler/GetTodoListsQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/TodoListHandler/GetTodoListsQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/UserHandler/GetUserByEmailQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/UserHandler/GetUserByEmailQueryHandler.cs index f7cf1a8c..15514706 100644 --- a/BlazorShop.Application/Handlers/Queries/UserHandler/GetUserByEmailQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/UserHandler/GetUserByEmailQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/UserHandler/GetUserByIdQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/UserHandler/GetUserByIdQueryHandler.cs index 319780ee..e3d69c4c 100644 --- a/BlazorShop.Application/Handlers/Queries/UserHandler/GetUserByIdQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/UserHandler/GetUserByIdQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/UserHandler/GetUsersInactiveQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/UserHandler/GetUsersInactiveQueryHandler.cs index dbc37a20..33bf1827 100644 --- a/BlazorShop.Application/Handlers/Queries/UserHandler/GetUsersInactiveQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/UserHandler/GetUsersInactiveQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Handlers/Queries/UserHandler/GetUsersQueryHandler.cs b/BlazorShop.Application/Handlers/Queries/UserHandler/GetUsersQueryHandler.cs index f31469f4..a643dbed 100644 --- a/BlazorShop.Application/Handlers/Queries/UserHandler/GetUsersQueryHandler.cs +++ b/BlazorShop.Application/Handlers/Queries/UserHandler/GetUsersQueryHandler.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/CartQuery/GetCartByIdQuery.cs b/BlazorShop.Application/Queries/CartQuery/GetCartByIdQuery.cs index 4b524aaf..78bcafca 100644 --- a/BlazorShop.Application/Queries/CartQuery/GetCartByIdQuery.cs +++ b/BlazorShop.Application/Queries/CartQuery/GetCartByIdQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/CartQuery/GetCartsCountQuery.cs b/BlazorShop.Application/Queries/CartQuery/GetCartsCountQuery.cs index f14153ac..525f9d77 100644 --- a/BlazorShop.Application/Queries/CartQuery/GetCartsCountQuery.cs +++ b/BlazorShop.Application/Queries/CartQuery/GetCartsCountQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/CartQuery/GetCartsQuery.cs b/BlazorShop.Application/Queries/CartQuery/GetCartsQuery.cs index 5918c0a7..02555ef3 100644 --- a/BlazorShop.Application/Queries/CartQuery/GetCartsQuery.cs +++ b/BlazorShop.Application/Queries/CartQuery/GetCartsQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/ClotheQuery/GetClotheByIdQuery.cs b/BlazorShop.Application/Queries/ClotheQuery/GetClotheByIdQuery.cs index 82071fc1..651ff673 100644 --- a/BlazorShop.Application/Queries/ClotheQuery/GetClotheByIdQuery.cs +++ b/BlazorShop.Application/Queries/ClotheQuery/GetClotheByIdQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/ClotheQuery/GetClothesQuery.cs b/BlazorShop.Application/Queries/ClotheQuery/GetClothesQuery.cs index aca98a0c..22e0bd8a 100644 --- a/BlazorShop.Application/Queries/ClotheQuery/GetClothesQuery.cs +++ b/BlazorShop.Application/Queries/ClotheQuery/GetClothesQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/InvoiceQuery/GetInvoiceByIdQuery.cs b/BlazorShop.Application/Queries/InvoiceQuery/GetInvoiceByIdQuery.cs index dc8498ee..af09a3ad 100644 --- a/BlazorShop.Application/Queries/InvoiceQuery/GetInvoiceByIdQuery.cs +++ b/BlazorShop.Application/Queries/InvoiceQuery/GetInvoiceByIdQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/InvoiceQuery/GetInvoicesQuery.cs b/BlazorShop.Application/Queries/InvoiceQuery/GetInvoicesQuery.cs index 7b9287fc..7810f8eb 100644 --- a/BlazorShop.Application/Queries/InvoiceQuery/GetInvoicesQuery.cs +++ b/BlazorShop.Application/Queries/InvoiceQuery/GetInvoicesQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/MusicQuery/GetMusicByIdQuery.cs b/BlazorShop.Application/Queries/MusicQuery/GetMusicByIdQuery.cs index 9df972b7..e59b2099 100644 --- a/BlazorShop.Application/Queries/MusicQuery/GetMusicByIdQuery.cs +++ b/BlazorShop.Application/Queries/MusicQuery/GetMusicByIdQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/MusicQuery/GetMusicsQuery.cs b/BlazorShop.Application/Queries/MusicQuery/GetMusicsQuery.cs index 51a2af8f..6ccfa37f 100644 --- a/BlazorShop.Application/Queries/MusicQuery/GetMusicsQuery.cs +++ b/BlazorShop.Application/Queries/MusicQuery/GetMusicsQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/OrderQuery/GetOrderByIdQuery.cs b/BlazorShop.Application/Queries/OrderQuery/GetOrderByIdQuery.cs index e226f150..18bfc359 100644 --- a/BlazorShop.Application/Queries/OrderQuery/GetOrderByIdQuery.cs +++ b/BlazorShop.Application/Queries/OrderQuery/GetOrderByIdQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/OrderQuery/GetOrdersQuery.cs b/BlazorShop.Application/Queries/OrderQuery/GetOrdersQuery.cs index f9ffc56b..4bf6f1e5 100644 --- a/BlazorShop.Application/Queries/OrderQuery/GetOrdersQuery.cs +++ b/BlazorShop.Application/Queries/OrderQuery/GetOrdersQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/ReceiptQuery/GetReceiptByIdQuery.cs b/BlazorShop.Application/Queries/ReceiptQuery/GetReceiptByIdQuery.cs index ce24dd5e..e3fdc807 100644 --- a/BlazorShop.Application/Queries/ReceiptQuery/GetReceiptByIdQuery.cs +++ b/BlazorShop.Application/Queries/ReceiptQuery/GetReceiptByIdQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/ReceiptQuery/GetReceiptsQuery.cs b/BlazorShop.Application/Queries/ReceiptQuery/GetReceiptsQuery.cs index e0598e4d..3c762ccd 100644 --- a/BlazorShop.Application/Queries/ReceiptQuery/GetReceiptsQuery.cs +++ b/BlazorShop.Application/Queries/ReceiptQuery/GetReceiptsQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/RoleQuery/GetRoleByIdQuery.cs b/BlazorShop.Application/Queries/RoleQuery/GetRoleByIdQuery.cs index 89b26643..d13e48ef 100644 --- a/BlazorShop.Application/Queries/RoleQuery/GetRoleByIdQuery.cs +++ b/BlazorShop.Application/Queries/RoleQuery/GetRoleByIdQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/RoleQuery/GetRoleByNormalizedNameQuery.cs b/BlazorShop.Application/Queries/RoleQuery/GetRoleByNormalizedNameQuery.cs index 78c55f6b..4c86202f 100644 --- a/BlazorShop.Application/Queries/RoleQuery/GetRoleByNormalizedNameQuery.cs +++ b/BlazorShop.Application/Queries/RoleQuery/GetRoleByNormalizedNameQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/RoleQuery/GetRolesForAdminQuery.cs b/BlazorShop.Application/Queries/RoleQuery/GetRolesForAdminQuery.cs index 14d1bece..69b0082f 100644 --- a/BlazorShop.Application/Queries/RoleQuery/GetRolesForAdminQuery.cs +++ b/BlazorShop.Application/Queries/RoleQuery/GetRolesForAdminQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/RoleQuery/GetRolesQuery.cs b/BlazorShop.Application/Queries/RoleQuery/GetRolesQuery.cs index cdb51b79..1e1719c5 100644 --- a/BlazorShop.Application/Queries/RoleQuery/GetRolesQuery.cs +++ b/BlazorShop.Application/Queries/RoleQuery/GetRolesQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/SubscriberQuery/GetSubscriberByIdQuery.cs b/BlazorShop.Application/Queries/SubscriberQuery/GetSubscriberByIdQuery.cs index ad3d0548..770607db 100644 --- a/BlazorShop.Application/Queries/SubscriberQuery/GetSubscriberByIdQuery.cs +++ b/BlazorShop.Application/Queries/SubscriberQuery/GetSubscriberByIdQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/SubscriberQuery/GetSubscribersQuery.cs b/BlazorShop.Application/Queries/SubscriberQuery/GetSubscribersQuery.cs index 57dd94e1..25f6bf82 100644 --- a/BlazorShop.Application/Queries/SubscriberQuery/GetSubscribersQuery.cs +++ b/BlazorShop.Application/Queries/SubscriberQuery/GetSubscribersQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/SubscriberQuery/GetUserSubscribersQuery.cs b/BlazorShop.Application/Queries/SubscriberQuery/GetUserSubscribersQuery.cs index 2bb977fc..7520cae4 100644 --- a/BlazorShop.Application/Queries/SubscriberQuery/GetUserSubscribersQuery.cs +++ b/BlazorShop.Application/Queries/SubscriberQuery/GetUserSubscribersQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/SubscriptionQuery/GetSubscriptionByIdQuery.cs b/BlazorShop.Application/Queries/SubscriptionQuery/GetSubscriptionByIdQuery.cs index af7a426a..476b9083 100644 --- a/BlazorShop.Application/Queries/SubscriptionQuery/GetSubscriptionByIdQuery.cs +++ b/BlazorShop.Application/Queries/SubscriptionQuery/GetSubscriptionByIdQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/SubscriptionQuery/GetSubscriptionsQuery.cs b/BlazorShop.Application/Queries/SubscriptionQuery/GetSubscriptionsQuery.cs index c15aaf7e..8d2a8d4a 100644 --- a/BlazorShop.Application/Queries/SubscriptionQuery/GetSubscriptionsQuery.cs +++ b/BlazorShop.Application/Queries/SubscriptionQuery/GetSubscriptionsQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/TodoItemQuery/GetTodoItemByIdQuery.cs b/BlazorShop.Application/Queries/TodoItemQuery/GetTodoItemByIdQuery.cs index 78a55ca3..cfdb9560 100644 --- a/BlazorShop.Application/Queries/TodoItemQuery/GetTodoItemByIdQuery.cs +++ b/BlazorShop.Application/Queries/TodoItemQuery/GetTodoItemByIdQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/TodoItemQuery/GetTodoItemsQuery.cs b/BlazorShop.Application/Queries/TodoItemQuery/GetTodoItemsQuery.cs index 50fb852d..8a40b686 100644 --- a/BlazorShop.Application/Queries/TodoItemQuery/GetTodoItemsQuery.cs +++ b/BlazorShop.Application/Queries/TodoItemQuery/GetTodoItemsQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/TodoListQuery/GetTodoListByIdQuery.cs b/BlazorShop.Application/Queries/TodoListQuery/GetTodoListByIdQuery.cs index 914cfdfb..8337169a 100644 --- a/BlazorShop.Application/Queries/TodoListQuery/GetTodoListByIdQuery.cs +++ b/BlazorShop.Application/Queries/TodoListQuery/GetTodoListByIdQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/TodoListQuery/GetTodoListsQuery.cs b/BlazorShop.Application/Queries/TodoListQuery/GetTodoListsQuery.cs index 3b767e7f..a655f339 100644 --- a/BlazorShop.Application/Queries/TodoListQuery/GetTodoListsQuery.cs +++ b/BlazorShop.Application/Queries/TodoListQuery/GetTodoListsQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/UserQuery/GetUserByEmailQuery.cs b/BlazorShop.Application/Queries/UserQuery/GetUserByEmailQuery.cs index 767102d0..97644787 100644 --- a/BlazorShop.Application/Queries/UserQuery/GetUserByEmailQuery.cs +++ b/BlazorShop.Application/Queries/UserQuery/GetUserByEmailQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/UserQuery/GetUserByIdQuery.cs b/BlazorShop.Application/Queries/UserQuery/GetUserByIdQuery.cs index c17523fb..d44a8f62 100644 --- a/BlazorShop.Application/Queries/UserQuery/GetUserByIdQuery.cs +++ b/BlazorShop.Application/Queries/UserQuery/GetUserByIdQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/UserQuery/GetUsersInactiveQuery.cs b/BlazorShop.Application/Queries/UserQuery/GetUsersInactiveQuery.cs index d7ebe16c..349bca63 100644 --- a/BlazorShop.Application/Queries/UserQuery/GetUsersInactiveQuery.cs +++ b/BlazorShop.Application/Queries/UserQuery/GetUsersInactiveQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Queries/UserQuery/GetUsersQuery.cs b/BlazorShop.Application/Queries/UserQuery/GetUsersQuery.cs index b2cc0a3f..1dab990a 100644 --- a/BlazorShop.Application/Queries/UserQuery/GetUsersQuery.cs +++ b/BlazorShop.Application/Queries/UserQuery/GetUsersQuery.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Responses/CartResponse.cs b/BlazorShop.Application/Responses/CartResponse.cs index d2f67e9d..0391346b 100644 --- a/BlazorShop.Application/Responses/CartResponse.cs +++ b/BlazorShop.Application/Responses/CartResponse.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Responses/ClotheResponse.cs b/BlazorShop.Application/Responses/ClotheResponse.cs index 6dd735a8..a9b25f93 100644 --- a/BlazorShop.Application/Responses/ClotheResponse.cs +++ b/BlazorShop.Application/Responses/ClotheResponse.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Responses/InvoiceResponse.cs b/BlazorShop.Application/Responses/InvoiceResponse.cs index d15c2005..6f3407ff 100644 --- a/BlazorShop.Application/Responses/InvoiceResponse.cs +++ b/BlazorShop.Application/Responses/InvoiceResponse.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Responses/MusicResponse.cs b/BlazorShop.Application/Responses/MusicResponse.cs index bca313ee..43f4acad 100644 --- a/BlazorShop.Application/Responses/MusicResponse.cs +++ b/BlazorShop.Application/Responses/MusicResponse.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Responses/OrderResponse.cs b/BlazorShop.Application/Responses/OrderResponse.cs index 68be1b54..c8278e86 100644 --- a/BlazorShop.Application/Responses/OrderResponse.cs +++ b/BlazorShop.Application/Responses/OrderResponse.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Responses/ReceiptResponse.cs b/BlazorShop.Application/Responses/ReceiptResponse.cs index 48c2a95f..c34b88fb 100644 --- a/BlazorShop.Application/Responses/ReceiptResponse.cs +++ b/BlazorShop.Application/Responses/ReceiptResponse.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Responses/RoleResponse.cs b/BlazorShop.Application/Responses/RoleResponse.cs index ca0d1874..b0e331fa 100644 --- a/BlazorShop.Application/Responses/RoleResponse.cs +++ b/BlazorShop.Application/Responses/RoleResponse.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Responses/SubscriberResponse.cs b/BlazorShop.Application/Responses/SubscriberResponse.cs index 7606ef41..94efa9f5 100644 --- a/BlazorShop.Application/Responses/SubscriberResponse.cs +++ b/BlazorShop.Application/Responses/SubscriberResponse.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Responses/SubscriptionResponse.cs b/BlazorShop.Application/Responses/SubscriptionResponse.cs index 737eb2e8..70c60c8e 100644 --- a/BlazorShop.Application/Responses/SubscriptionResponse.cs +++ b/BlazorShop.Application/Responses/SubscriptionResponse.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Responses/TodoItemResponse.cs b/BlazorShop.Application/Responses/TodoItemResponse.cs index 1af8691b..67463e1d 100644 --- a/BlazorShop.Application/Responses/TodoItemResponse.cs +++ b/BlazorShop.Application/Responses/TodoItemResponse.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Responses/TodoListResponse.cs b/BlazorShop.Application/Responses/TodoListResponse.cs index 8144bcf6..eb70134c 100644 --- a/BlazorShop.Application/Responses/TodoListResponse.cs +++ b/BlazorShop.Application/Responses/TodoListResponse.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Responses/UserResponse.cs b/BlazorShop.Application/Responses/UserResponse.cs index d6fce4f5..df93322c 100644 --- a/BlazorShop.Application/Responses/UserResponse.cs +++ b/BlazorShop.Application/Responses/UserResponse.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Utils/ErrorsManager.cs b/BlazorShop.Application/Utils/ErrorsManager.cs index b6838205..b960c3d5 100644 --- a/BlazorShop.Application/Utils/ErrorsManager.cs +++ b/BlazorShop.Application/Utils/ErrorsManager.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Utils/StringRoleResources.cs b/BlazorShop.Application/Utils/StringRoleResources.cs index b03104f2..b15f5e68 100644 --- a/BlazorShop.Application/Utils/StringRoleResources.cs +++ b/BlazorShop.Application/Utils/StringRoleResources.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/AccountValidator/ChangePasswordCommandValidator.cs b/BlazorShop.Application/Validators/AccountValidator/ChangePasswordCommandValidator.cs index 9b288c62..131e112a 100644 --- a/BlazorShop.Application/Validators/AccountValidator/ChangePasswordCommandValidator.cs +++ b/BlazorShop.Application/Validators/AccountValidator/ChangePasswordCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/AccountValidator/LoginCommandValidator.cs b/BlazorShop.Application/Validators/AccountValidator/LoginCommandValidator.cs index 566db9ea..66fdd584 100644 --- a/BlazorShop.Application/Validators/AccountValidator/LoginCommandValidator.cs +++ b/BlazorShop.Application/Validators/AccountValidator/LoginCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/AccountValidator/RegisterCommandValidator.cs b/BlazorShop.Application/Validators/AccountValidator/RegisterCommandValidator.cs index 9b747435..ca4ef2ab 100644 --- a/BlazorShop.Application/Validators/AccountValidator/RegisterCommandValidator.cs +++ b/BlazorShop.Application/Validators/AccountValidator/RegisterCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/AccountValidator/ResetPasswordCommandValidator.cs b/BlazorShop.Application/Validators/AccountValidator/ResetPasswordCommandValidator.cs index c1e5041e..b5f4df63 100644 --- a/BlazorShop.Application/Validators/AccountValidator/ResetPasswordCommandValidator.cs +++ b/BlazorShop.Application/Validators/AccountValidator/ResetPasswordCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/CartValidator/CreateCartCommandValidator.cs b/BlazorShop.Application/Validators/CartValidator/CreateCartCommandValidator.cs index 13cce7b1..203c1ea5 100644 --- a/BlazorShop.Application/Validators/CartValidator/CreateCartCommandValidator.cs +++ b/BlazorShop.Application/Validators/CartValidator/CreateCartCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/CartValidator/DeleteAllCartsCommandValidator.cs b/BlazorShop.Application/Validators/CartValidator/DeleteAllCartsCommandValidator.cs index 7b854d60..796d6dbc 100644 --- a/BlazorShop.Application/Validators/CartValidator/DeleteAllCartsCommandValidator.cs +++ b/BlazorShop.Application/Validators/CartValidator/DeleteAllCartsCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/CartValidator/DeleteCartCommandValidator.cs b/BlazorShop.Application/Validators/CartValidator/DeleteCartCommandValidator.cs index bb3c56a7..cfa2ea82 100644 --- a/BlazorShop.Application/Validators/CartValidator/DeleteCartCommandValidator.cs +++ b/BlazorShop.Application/Validators/CartValidator/DeleteCartCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/CartValidator/GetCartByIdQueryValidator.cs b/BlazorShop.Application/Validators/CartValidator/GetCartByIdQueryValidator.cs index c1f7c44b..7c5f46ae 100644 --- a/BlazorShop.Application/Validators/CartValidator/GetCartByIdQueryValidator.cs +++ b/BlazorShop.Application/Validators/CartValidator/GetCartByIdQueryValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/CartValidator/GetCartsCountQueryValidator.cs b/BlazorShop.Application/Validators/CartValidator/GetCartsCountQueryValidator.cs index 62132b60..b3e801db 100644 --- a/BlazorShop.Application/Validators/CartValidator/GetCartsCountQueryValidator.cs +++ b/BlazorShop.Application/Validators/CartValidator/GetCartsCountQueryValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/CartValidator/GetCartsQueryValidator.cs b/BlazorShop.Application/Validators/CartValidator/GetCartsQueryValidator.cs index 318311b9..6d86f002 100644 --- a/BlazorShop.Application/Validators/CartValidator/GetCartsQueryValidator.cs +++ b/BlazorShop.Application/Validators/CartValidator/GetCartsQueryValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/CartValidator/UpdateCartCommandValidator.cs b/BlazorShop.Application/Validators/CartValidator/UpdateCartCommandValidator.cs index b940a915..bf15f8b8 100644 --- a/BlazorShop.Application/Validators/CartValidator/UpdateCartCommandValidator.cs +++ b/BlazorShop.Application/Validators/CartValidator/UpdateCartCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/ClotheValidator/CreateClotheCommandValidator.cs b/BlazorShop.Application/Validators/ClotheValidator/CreateClotheCommandValidator.cs index 48905466..7037457a 100644 --- a/BlazorShop.Application/Validators/ClotheValidator/CreateClotheCommandValidator.cs +++ b/BlazorShop.Application/Validators/ClotheValidator/CreateClotheCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/ClotheValidator/DeleteClotheCommandValidator.cs b/BlazorShop.Application/Validators/ClotheValidator/DeleteClotheCommandValidator.cs index e0a2bde7..4f7b7de6 100644 --- a/BlazorShop.Application/Validators/ClotheValidator/DeleteClotheCommandValidator.cs +++ b/BlazorShop.Application/Validators/ClotheValidator/DeleteClotheCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/ClotheValidator/GetClotheByIdQueryValidator.cs b/BlazorShop.Application/Validators/ClotheValidator/GetClotheByIdQueryValidator.cs index 770dee58..ce02b715 100644 --- a/BlazorShop.Application/Validators/ClotheValidator/GetClotheByIdQueryValidator.cs +++ b/BlazorShop.Application/Validators/ClotheValidator/GetClotheByIdQueryValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/ClotheValidator/UpdateClotheCommandValidator.cs b/BlazorShop.Application/Validators/ClotheValidator/UpdateClotheCommandValidator.cs index e2119b41..45d28293 100644 --- a/BlazorShop.Application/Validators/ClotheValidator/UpdateClotheCommandValidator.cs +++ b/BlazorShop.Application/Validators/ClotheValidator/UpdateClotheCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/InvoiceValidator/CreateInvoiceCommandValidator.cs b/BlazorShop.Application/Validators/InvoiceValidator/CreateInvoiceCommandValidator.cs index dfa72b65..f705fc82 100644 --- a/BlazorShop.Application/Validators/InvoiceValidator/CreateInvoiceCommandValidator.cs +++ b/BlazorShop.Application/Validators/InvoiceValidator/CreateInvoiceCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/InvoiceValidator/DeleteInvoiceCommandValidator.cs b/BlazorShop.Application/Validators/InvoiceValidator/DeleteInvoiceCommandValidator.cs index de87002e..994c3eac 100644 --- a/BlazorShop.Application/Validators/InvoiceValidator/DeleteInvoiceCommandValidator.cs +++ b/BlazorShop.Application/Validators/InvoiceValidator/DeleteInvoiceCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/InvoiceValidator/GetInvoiceByIdQueryValidator.cs b/BlazorShop.Application/Validators/InvoiceValidator/GetInvoiceByIdQueryValidator.cs index ed8c32e3..cebce142 100644 --- a/BlazorShop.Application/Validators/InvoiceValidator/GetInvoiceByIdQueryValidator.cs +++ b/BlazorShop.Application/Validators/InvoiceValidator/GetInvoiceByIdQueryValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/InvoiceValidator/UpdateInvoiceCommandValidator.cs b/BlazorShop.Application/Validators/InvoiceValidator/UpdateInvoiceCommandValidator.cs index a846db3a..9f765f2d 100644 --- a/BlazorShop.Application/Validators/InvoiceValidator/UpdateInvoiceCommandValidator.cs +++ b/BlazorShop.Application/Validators/InvoiceValidator/UpdateInvoiceCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/MusicValidator/CreateMusicCommandValidator.cs b/BlazorShop.Application/Validators/MusicValidator/CreateMusicCommandValidator.cs index 4220a0ce..ffb508ba 100644 --- a/BlazorShop.Application/Validators/MusicValidator/CreateMusicCommandValidator.cs +++ b/BlazorShop.Application/Validators/MusicValidator/CreateMusicCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/MusicValidator/DeleteMusicCommandValidator.cs b/BlazorShop.Application/Validators/MusicValidator/DeleteMusicCommandValidator.cs index 418efb79..8681b7d8 100644 --- a/BlazorShop.Application/Validators/MusicValidator/DeleteMusicCommandValidator.cs +++ b/BlazorShop.Application/Validators/MusicValidator/DeleteMusicCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/MusicValidator/GetMusicByIdQueryValidator.cs b/BlazorShop.Application/Validators/MusicValidator/GetMusicByIdQueryValidator.cs index eb9aaf17..05439b29 100644 --- a/BlazorShop.Application/Validators/MusicValidator/GetMusicByIdQueryValidator.cs +++ b/BlazorShop.Application/Validators/MusicValidator/GetMusicByIdQueryValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/MusicValidator/UpdateMusicCommandValidator.cs b/BlazorShop.Application/Validators/MusicValidator/UpdateMusicCommandValidator.cs index 8a154e51..11eda46a 100644 --- a/BlazorShop.Application/Validators/MusicValidator/UpdateMusicCommandValidator.cs +++ b/BlazorShop.Application/Validators/MusicValidator/UpdateMusicCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/OrderValidator/CreateOrderCommandValidator.cs b/BlazorShop.Application/Validators/OrderValidator/CreateOrderCommandValidator.cs index e2bdee84..fe525cf6 100644 --- a/BlazorShop.Application/Validators/OrderValidator/CreateOrderCommandValidator.cs +++ b/BlazorShop.Application/Validators/OrderValidator/CreateOrderCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/OrderValidator/DeleteOrderCommandValidator.cs b/BlazorShop.Application/Validators/OrderValidator/DeleteOrderCommandValidator.cs index 3af2b05c..1092d2cc 100644 --- a/BlazorShop.Application/Validators/OrderValidator/DeleteOrderCommandValidator.cs +++ b/BlazorShop.Application/Validators/OrderValidator/DeleteOrderCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/OrderValidator/GetOrderByIdQueryValidator.cs b/BlazorShop.Application/Validators/OrderValidator/GetOrderByIdQueryValidator.cs index f03c2a63..57929050 100644 --- a/BlazorShop.Application/Validators/OrderValidator/GetOrderByIdQueryValidator.cs +++ b/BlazorShop.Application/Validators/OrderValidator/GetOrderByIdQueryValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/OrderValidator/GetOrdersQueryValidator.cs b/BlazorShop.Application/Validators/OrderValidator/GetOrdersQueryValidator.cs index 1cf341fd..c97f2cb9 100644 --- a/BlazorShop.Application/Validators/OrderValidator/GetOrdersQueryValidator.cs +++ b/BlazorShop.Application/Validators/OrderValidator/GetOrdersQueryValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/OrderValidator/UpdateOrderCommandValidator.cs b/BlazorShop.Application/Validators/OrderValidator/UpdateOrderCommandValidator.cs index e8c7662b..81f76dd0 100644 --- a/BlazorShop.Application/Validators/OrderValidator/UpdateOrderCommandValidator.cs +++ b/BlazorShop.Application/Validators/OrderValidator/UpdateOrderCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/ReceiptValidator/CreateReceiptCommandValidator.cs b/BlazorShop.Application/Validators/ReceiptValidator/CreateReceiptCommandValidator.cs index 2db711fb..f636523b 100644 --- a/BlazorShop.Application/Validators/ReceiptValidator/CreateReceiptCommandValidator.cs +++ b/BlazorShop.Application/Validators/ReceiptValidator/CreateReceiptCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/ReceiptValidator/DeleteReceiptCommandValidator.cs b/BlazorShop.Application/Validators/ReceiptValidator/DeleteReceiptCommandValidator.cs index 55732407..19bc41be 100644 --- a/BlazorShop.Application/Validators/ReceiptValidator/DeleteReceiptCommandValidator.cs +++ b/BlazorShop.Application/Validators/ReceiptValidator/DeleteReceiptCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/ReceiptValidator/GetReceiptByIdQueryValidator.cs b/BlazorShop.Application/Validators/ReceiptValidator/GetReceiptByIdQueryValidator.cs index 0358dec7..573750c9 100644 --- a/BlazorShop.Application/Validators/ReceiptValidator/GetReceiptByIdQueryValidator.cs +++ b/BlazorShop.Application/Validators/ReceiptValidator/GetReceiptByIdQueryValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/ReceiptValidator/GetReceiptsQueryValidator.cs b/BlazorShop.Application/Validators/ReceiptValidator/GetReceiptsQueryValidator.cs index bc365358..c0f1b94f 100644 --- a/BlazorShop.Application/Validators/ReceiptValidator/GetReceiptsQueryValidator.cs +++ b/BlazorShop.Application/Validators/ReceiptValidator/GetReceiptsQueryValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/ReceiptValidator/UpdateReceiptCommandValidator.cs b/BlazorShop.Application/Validators/ReceiptValidator/UpdateReceiptCommandValidator.cs index 87612e63..9578a832 100644 --- a/BlazorShop.Application/Validators/ReceiptValidator/UpdateReceiptCommandValidator.cs +++ b/BlazorShop.Application/Validators/ReceiptValidator/UpdateReceiptCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/RoleValidator/CreateRoleCommandValidator.cs b/BlazorShop.Application/Validators/RoleValidator/CreateRoleCommandValidator.cs index ce25d4c4..c4b69ed0 100644 --- a/BlazorShop.Application/Validators/RoleValidator/CreateRoleCommandValidator.cs +++ b/BlazorShop.Application/Validators/RoleValidator/CreateRoleCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/RoleValidator/DeleteRoleCommandValidator.cs b/BlazorShop.Application/Validators/RoleValidator/DeleteRoleCommandValidator.cs index dbb98751..35177ecf 100644 --- a/BlazorShop.Application/Validators/RoleValidator/DeleteRoleCommandValidator.cs +++ b/BlazorShop.Application/Validators/RoleValidator/DeleteRoleCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/RoleValidator/GetRoleByIdQueryValidator.cs b/BlazorShop.Application/Validators/RoleValidator/GetRoleByIdQueryValidator.cs index 764c6ca3..6fe0889f 100644 --- a/BlazorShop.Application/Validators/RoleValidator/GetRoleByIdQueryValidator.cs +++ b/BlazorShop.Application/Validators/RoleValidator/GetRoleByIdQueryValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/RoleValidator/GetRoleByNormalizedNameQueryValidator.cs b/BlazorShop.Application/Validators/RoleValidator/GetRoleByNormalizedNameQueryValidator.cs index 354cabe6..c9d802b5 100644 --- a/BlazorShop.Application/Validators/RoleValidator/GetRoleByNormalizedNameQueryValidator.cs +++ b/BlazorShop.Application/Validators/RoleValidator/GetRoleByNormalizedNameQueryValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/RoleValidator/UpdateRoleCommandValidator.cs b/BlazorShop.Application/Validators/RoleValidator/UpdateRoleCommandValidator.cs index 57e5ef78..39bb1254 100644 --- a/BlazorShop.Application/Validators/RoleValidator/UpdateRoleCommandValidator.cs +++ b/BlazorShop.Application/Validators/RoleValidator/UpdateRoleCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/SubscriberValidator/CreateSubscriberCommandValidator.cs b/BlazorShop.Application/Validators/SubscriberValidator/CreateSubscriberCommandValidator.cs index 1c512219..a5c5d227 100644 --- a/BlazorShop.Application/Validators/SubscriberValidator/CreateSubscriberCommandValidator.cs +++ b/BlazorShop.Application/Validators/SubscriberValidator/CreateSubscriberCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/SubscriberValidator/DeleteSubscriberCommandValidator.cs b/BlazorShop.Application/Validators/SubscriberValidator/DeleteSubscriberCommandValidator.cs index 79022ef3..0548ce57 100644 --- a/BlazorShop.Application/Validators/SubscriberValidator/DeleteSubscriberCommandValidator.cs +++ b/BlazorShop.Application/Validators/SubscriberValidator/DeleteSubscriberCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/SubscriberValidator/GetSubscriberByIdQueryValidator.cs b/BlazorShop.Application/Validators/SubscriberValidator/GetSubscriberByIdQueryValidator.cs index 6308c004..60f89967 100644 --- a/BlazorShop.Application/Validators/SubscriberValidator/GetSubscriberByIdQueryValidator.cs +++ b/BlazorShop.Application/Validators/SubscriberValidator/GetSubscriberByIdQueryValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/SubscriberValidator/GetUserSubscribersQueryValidator.cs b/BlazorShop.Application/Validators/SubscriberValidator/GetUserSubscribersQueryValidator.cs index 8efab611..5dedf0e0 100644 --- a/BlazorShop.Application/Validators/SubscriberValidator/GetUserSubscribersQueryValidator.cs +++ b/BlazorShop.Application/Validators/SubscriberValidator/GetUserSubscribersQueryValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/SubscriberValidator/UpdateCreatedSubscriberCommandValidator.cs b/BlazorShop.Application/Validators/SubscriberValidator/UpdateCreatedSubscriberCommandValidator.cs index e6b98c5a..c9e39e58 100644 --- a/BlazorShop.Application/Validators/SubscriberValidator/UpdateCreatedSubscriberCommandValidator.cs +++ b/BlazorShop.Application/Validators/SubscriberValidator/UpdateCreatedSubscriberCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/SubscriberValidator/UpdateSubscriberCommandValidator.cs b/BlazorShop.Application/Validators/SubscriberValidator/UpdateSubscriberCommandValidator.cs index 4b94aff4..2edf35dd 100644 --- a/BlazorShop.Application/Validators/SubscriberValidator/UpdateSubscriberCommandValidator.cs +++ b/BlazorShop.Application/Validators/SubscriberValidator/UpdateSubscriberCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/SubscriberValidator/UpdateSubscriberStatusCommandValidator.cs b/BlazorShop.Application/Validators/SubscriberValidator/UpdateSubscriberStatusCommandValidator.cs index a011a297..0647d18e 100644 --- a/BlazorShop.Application/Validators/SubscriberValidator/UpdateSubscriberStatusCommandValidator.cs +++ b/BlazorShop.Application/Validators/SubscriberValidator/UpdateSubscriberStatusCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/SubscriptionValidator/CreateSubscriptionCommandValidator.cs b/BlazorShop.Application/Validators/SubscriptionValidator/CreateSubscriptionCommandValidator.cs index 8512bc65..878e4dd9 100644 --- a/BlazorShop.Application/Validators/SubscriptionValidator/CreateSubscriptionCommandValidator.cs +++ b/BlazorShop.Application/Validators/SubscriptionValidator/CreateSubscriptionCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/SubscriptionValidator/DeleteSubscriptionCommandValidator.cs b/BlazorShop.Application/Validators/SubscriptionValidator/DeleteSubscriptionCommandValidator.cs index 4ff05992..de34ef60 100644 --- a/BlazorShop.Application/Validators/SubscriptionValidator/DeleteSubscriptionCommandValidator.cs +++ b/BlazorShop.Application/Validators/SubscriptionValidator/DeleteSubscriptionCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/SubscriptionValidator/GetSubscriptionByIdQueryValidator.cs b/BlazorShop.Application/Validators/SubscriptionValidator/GetSubscriptionByIdQueryValidator.cs index cb1dc00f..7303491d 100644 --- a/BlazorShop.Application/Validators/SubscriptionValidator/GetSubscriptionByIdQueryValidator.cs +++ b/BlazorShop.Application/Validators/SubscriptionValidator/GetSubscriptionByIdQueryValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/SubscriptionValidator/UpdateSubscriptionCommandValidator.cs b/BlazorShop.Application/Validators/SubscriptionValidator/UpdateSubscriptionCommandValidator.cs index f922d07d..f6b730da 100644 --- a/BlazorShop.Application/Validators/SubscriptionValidator/UpdateSubscriptionCommandValidator.cs +++ b/BlazorShop.Application/Validators/SubscriptionValidator/UpdateSubscriptionCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/TodoItemValidator/CreateTodoItemCommandValidator.cs b/BlazorShop.Application/Validators/TodoItemValidator/CreateTodoItemCommandValidator.cs index 9f15adc4..ebd882e9 100644 --- a/BlazorShop.Application/Validators/TodoItemValidator/CreateTodoItemCommandValidator.cs +++ b/BlazorShop.Application/Validators/TodoItemValidator/CreateTodoItemCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/TodoItemValidator/DeleteTodoItemCommandValidator.cs b/BlazorShop.Application/Validators/TodoItemValidator/DeleteTodoItemCommandValidator.cs index 946cd9cd..c450fced 100644 --- a/BlazorShop.Application/Validators/TodoItemValidator/DeleteTodoItemCommandValidator.cs +++ b/BlazorShop.Application/Validators/TodoItemValidator/DeleteTodoItemCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/TodoItemValidator/GetTodoItemByIdQueryValidator.cs b/BlazorShop.Application/Validators/TodoItemValidator/GetTodoItemByIdQueryValidator.cs index 86a9e71c..d70fc81e 100644 --- a/BlazorShop.Application/Validators/TodoItemValidator/GetTodoItemByIdQueryValidator.cs +++ b/BlazorShop.Application/Validators/TodoItemValidator/GetTodoItemByIdQueryValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/TodoItemValidator/UpdateTodoItemCommandValidator.cs b/BlazorShop.Application/Validators/TodoItemValidator/UpdateTodoItemCommandValidator.cs index 5edfa36a..4b588b7d 100644 --- a/BlazorShop.Application/Validators/TodoItemValidator/UpdateTodoItemCommandValidator.cs +++ b/BlazorShop.Application/Validators/TodoItemValidator/UpdateTodoItemCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/TodoListValidator/CreateTodoListCommandValidator.cs b/BlazorShop.Application/Validators/TodoListValidator/CreateTodoListCommandValidator.cs index e39b8614..c6897328 100644 --- a/BlazorShop.Application/Validators/TodoListValidator/CreateTodoListCommandValidator.cs +++ b/BlazorShop.Application/Validators/TodoListValidator/CreateTodoListCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/TodoListValidator/DeleteTodoListCommandValidator.cs b/BlazorShop.Application/Validators/TodoListValidator/DeleteTodoListCommandValidator.cs index 25d2bc7e..f3918e85 100644 --- a/BlazorShop.Application/Validators/TodoListValidator/DeleteTodoListCommandValidator.cs +++ b/BlazorShop.Application/Validators/TodoListValidator/DeleteTodoListCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/TodoListValidator/GetTodoListByIdQueryValidator.cs b/BlazorShop.Application/Validators/TodoListValidator/GetTodoListByIdQueryValidator.cs index 231008b6..ff986a71 100644 --- a/BlazorShop.Application/Validators/TodoListValidator/GetTodoListByIdQueryValidator.cs +++ b/BlazorShop.Application/Validators/TodoListValidator/GetTodoListByIdQueryValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/TodoListValidator/UpdateTodoListCommandValidator.cs b/BlazorShop.Application/Validators/TodoListValidator/UpdateTodoListCommandValidator.cs index f66576a8..fdfbf2fc 100644 --- a/BlazorShop.Application/Validators/TodoListValidator/UpdateTodoListCommandValidator.cs +++ b/BlazorShop.Application/Validators/TodoListValidator/UpdateTodoListCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/UserValidator/ActivateUserCommandValidator.cs b/BlazorShop.Application/Validators/UserValidator/ActivateUserCommandValidator.cs index 7dc34b35..308473ff 100644 --- a/BlazorShop.Application/Validators/UserValidator/ActivateUserCommandValidator.cs +++ b/BlazorShop.Application/Validators/UserValidator/ActivateUserCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/UserValidator/AssignUserToRoleCommandValidator.cs b/BlazorShop.Application/Validators/UserValidator/AssignUserToRoleCommandValidator.cs index 5604c87f..21466619 100644 --- a/BlazorShop.Application/Validators/UserValidator/AssignUserToRoleCommandValidator.cs +++ b/BlazorShop.Application/Validators/UserValidator/AssignUserToRoleCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/UserValidator/CreateUserCommandValidator.cs b/BlazorShop.Application/Validators/UserValidator/CreateUserCommandValidator.cs index dc7e4755..de15f84b 100644 --- a/BlazorShop.Application/Validators/UserValidator/CreateUserCommandValidator.cs +++ b/BlazorShop.Application/Validators/UserValidator/CreateUserCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/UserValidator/DeleteUserCommandValidator.cs b/BlazorShop.Application/Validators/UserValidator/DeleteUserCommandValidator.cs index cdbd09cf..2b219158 100644 --- a/BlazorShop.Application/Validators/UserValidator/DeleteUserCommandValidator.cs +++ b/BlazorShop.Application/Validators/UserValidator/DeleteUserCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/UserValidator/GetUserByEmailQueryValidator.cs b/BlazorShop.Application/Validators/UserValidator/GetUserByEmailQueryValidator.cs index 164b619a..5dd2d334 100644 --- a/BlazorShop.Application/Validators/UserValidator/GetUserByEmailQueryValidator.cs +++ b/BlazorShop.Application/Validators/UserValidator/GetUserByEmailQueryValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/UserValidator/GetUserByIdQueryValidator.cs b/BlazorShop.Application/Validators/UserValidator/GetUserByIdQueryValidator.cs index e41e1d07..efd2484a 100644 --- a/BlazorShop.Application/Validators/UserValidator/GetUserByIdQueryValidator.cs +++ b/BlazorShop.Application/Validators/UserValidator/GetUserByIdQueryValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/UserValidator/UpdateUserCommandValidator.cs b/BlazorShop.Application/Validators/UserValidator/UpdateUserCommandValidator.cs index 6765446d..4b6ccb07 100644 --- a/BlazorShop.Application/Validators/UserValidator/UpdateUserCommandValidator.cs +++ b/BlazorShop.Application/Validators/UserValidator/UpdateUserCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/Validators/UserValidator/UpdateUserEmailCommandValidator.cs b/BlazorShop.Application/Validators/UserValidator/UpdateUserEmailCommandValidator.cs index a05bce36..9bf0d365 100644 --- a/BlazorShop.Application/Validators/UserValidator/UpdateUserEmailCommandValidator.cs +++ b/BlazorShop.Application/Validators/UserValidator/UpdateUserEmailCommandValidator.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Application/_Imports.cs b/BlazorShop.Application/_Imports.cs index 77751772..15b5453f 100644 --- a/BlazorShop.Application/_Imports.cs +++ b/BlazorShop.Application/_Imports.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Domain/Common/EntityBase.cs b/BlazorShop.Domain/Common/EntityBase.cs index 9fe99d85..59ad1b16 100644 --- a/BlazorShop.Domain/Common/EntityBase.cs +++ b/BlazorShop.Domain/Common/EntityBase.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Domain/Entities/Cart.cs b/BlazorShop.Domain/Entities/Cart.cs index 1be88526..5896c11a 100644 --- a/BlazorShop.Domain/Entities/Cart.cs +++ b/BlazorShop.Domain/Entities/Cart.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Domain/Entities/Clothe.cs b/BlazorShop.Domain/Entities/Clothe.cs index 77412a35..4aed54b3 100644 --- a/BlazorShop.Domain/Entities/Clothe.cs +++ b/BlazorShop.Domain/Entities/Clothe.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Domain/Entities/Identity/Role.cs b/BlazorShop.Domain/Entities/Identity/Role.cs index 2957ac32..092a717e 100644 --- a/BlazorShop.Domain/Entities/Identity/Role.cs +++ b/BlazorShop.Domain/Entities/Identity/Role.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Domain/Entities/Identity/RoleClaim.cs b/BlazorShop.Domain/Entities/Identity/RoleClaim.cs index ff00eb5e..e96dc403 100644 --- a/BlazorShop.Domain/Entities/Identity/RoleClaim.cs +++ b/BlazorShop.Domain/Entities/Identity/RoleClaim.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Domain/Entities/Identity/User.cs b/BlazorShop.Domain/Entities/Identity/User.cs index 8471b2ce..cfb0f5a3 100644 --- a/BlazorShop.Domain/Entities/Identity/User.cs +++ b/BlazorShop.Domain/Entities/Identity/User.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Domain/Entities/Identity/UserClaim.cs b/BlazorShop.Domain/Entities/Identity/UserClaim.cs index 54441d7a..985d2286 100644 --- a/BlazorShop.Domain/Entities/Identity/UserClaim.cs +++ b/BlazorShop.Domain/Entities/Identity/UserClaim.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Domain/Entities/Identity/UserLogin.cs b/BlazorShop.Domain/Entities/Identity/UserLogin.cs index 6ee2f62d..a1481ef6 100644 --- a/BlazorShop.Domain/Entities/Identity/UserLogin.cs +++ b/BlazorShop.Domain/Entities/Identity/UserLogin.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Domain/Entities/Identity/UserRole.cs b/BlazorShop.Domain/Entities/Identity/UserRole.cs index 157d6a46..f13fe569 100644 --- a/BlazorShop.Domain/Entities/Identity/UserRole.cs +++ b/BlazorShop.Domain/Entities/Identity/UserRole.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Domain/Entities/Identity/UserToken.cs b/BlazorShop.Domain/Entities/Identity/UserToken.cs index 9692f9c5..fccc6c02 100644 --- a/BlazorShop.Domain/Entities/Identity/UserToken.cs +++ b/BlazorShop.Domain/Entities/Identity/UserToken.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Domain/Entities/Invoice.cs b/BlazorShop.Domain/Entities/Invoice.cs index 18221955..70e3bd85 100644 --- a/BlazorShop.Domain/Entities/Invoice.cs +++ b/BlazorShop.Domain/Entities/Invoice.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Domain/Entities/Music.cs b/BlazorShop.Domain/Entities/Music.cs index 3f4c8684..6b4c73e5 100644 --- a/BlazorShop.Domain/Entities/Music.cs +++ b/BlazorShop.Domain/Entities/Music.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Domain/Entities/Order.cs b/BlazorShop.Domain/Entities/Order.cs index 77c59ddf..7e0ecbbd 100644 --- a/BlazorShop.Domain/Entities/Order.cs +++ b/BlazorShop.Domain/Entities/Order.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Domain/Entities/Receipt.cs b/BlazorShop.Domain/Entities/Receipt.cs index fece1b5c..79491263 100644 --- a/BlazorShop.Domain/Entities/Receipt.cs +++ b/BlazorShop.Domain/Entities/Receipt.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Domain/Entities/Subscriber.cs b/BlazorShop.Domain/Entities/Subscriber.cs index cc5a440a..00765b62 100644 --- a/BlazorShop.Domain/Entities/Subscriber.cs +++ b/BlazorShop.Domain/Entities/Subscriber.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Domain/Entities/Subscription.cs b/BlazorShop.Domain/Entities/Subscription.cs index 0a3f982f..e6309b22 100644 --- a/BlazorShop.Domain/Entities/Subscription.cs +++ b/BlazorShop.Domain/Entities/Subscription.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Domain/Entities/TodoItem.cs b/BlazorShop.Domain/Entities/TodoItem.cs index cf05f20f..68408577 100644 --- a/BlazorShop.Domain/Entities/TodoItem.cs +++ b/BlazorShop.Domain/Entities/TodoItem.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Domain/Entities/TodoList.cs b/BlazorShop.Domain/Entities/TodoList.cs index c59a0705..6232608c 100644 --- a/BlazorShop.Domain/Entities/TodoList.cs +++ b/BlazorShop.Domain/Entities/TodoList.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Domain/Enums/SubscriptionStatus.cs b/BlazorShop.Domain/Enums/SubscriptionStatus.cs index 085fad7b..f522dbf8 100644 --- a/BlazorShop.Domain/Enums/SubscriptionStatus.cs +++ b/BlazorShop.Domain/Enums/SubscriptionStatus.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Domain/Enums/TodoItemPriority.cs b/BlazorShop.Domain/Enums/TodoItemPriority.cs index 306a1937..dcd6c3c5 100644 --- a/BlazorShop.Domain/Enums/TodoItemPriority.cs +++ b/BlazorShop.Domain/Enums/TodoItemPriority.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Domain/Enums/TodoItemState.cs b/BlazorShop.Domain/Enums/TodoItemState.cs index f7211b13..4cc57ac5 100644 --- a/BlazorShop.Domain/Enums/TodoItemState.cs +++ b/BlazorShop.Domain/Enums/TodoItemState.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Domain/_Imports.cs b/BlazorShop.Domain/_Imports.cs index 45c2ab04..7762e0f4 100644 --- a/BlazorShop.Domain/_Imports.cs +++ b/BlazorShop.Domain/_Imports.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/DependencyInjection.cs b/BlazorShop.Infrastructure/DependencyInjection.cs index 8f97e17d..de57e4b0 100644 --- a/BlazorShop.Infrastructure/DependencyInjection.cs +++ b/BlazorShop.Infrastructure/DependencyInjection.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/Persistence/ApplicationDbContext.cs b/BlazorShop.Infrastructure/Persistence/ApplicationDbContext.cs index 1237fed1..3b240c6e 100644 --- a/BlazorShop.Infrastructure/Persistence/ApplicationDbContext.cs +++ b/BlazorShop.Infrastructure/Persistence/ApplicationDbContext.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/Persistence/ApplicationDbContextSeed.cs b/BlazorShop.Infrastructure/Persistence/ApplicationDbContextSeed.cs index 7f019a26..e1ce79b1 100644 --- a/BlazorShop.Infrastructure/Persistence/ApplicationDbContextSeed.cs +++ b/BlazorShop.Infrastructure/Persistence/ApplicationDbContextSeed.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/Persistence/Configurations/CartConfiguration.cs b/BlazorShop.Infrastructure/Persistence/Configurations/CartConfiguration.cs index a88ea9ec..26812026 100644 --- a/BlazorShop.Infrastructure/Persistence/Configurations/CartConfiguration.cs +++ b/BlazorShop.Infrastructure/Persistence/Configurations/CartConfiguration.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/Persistence/Configurations/ClotheConfiguration.cs b/BlazorShop.Infrastructure/Persistence/Configurations/ClotheConfiguration.cs index bd4dc4ed..b49450d6 100644 --- a/BlazorShop.Infrastructure/Persistence/Configurations/ClotheConfiguration.cs +++ b/BlazorShop.Infrastructure/Persistence/Configurations/ClotheConfiguration.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/Persistence/Configurations/Identity/RoleClaimConfiguration.cs b/BlazorShop.Infrastructure/Persistence/Configurations/Identity/RoleClaimConfiguration.cs index 89b505a9..3be099a5 100644 --- a/BlazorShop.Infrastructure/Persistence/Configurations/Identity/RoleClaimConfiguration.cs +++ b/BlazorShop.Infrastructure/Persistence/Configurations/Identity/RoleClaimConfiguration.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/Persistence/Configurations/Identity/RoleConfiguration.cs b/BlazorShop.Infrastructure/Persistence/Configurations/Identity/RoleConfiguration.cs index 7e5b40e5..fdadb5b6 100644 --- a/BlazorShop.Infrastructure/Persistence/Configurations/Identity/RoleConfiguration.cs +++ b/BlazorShop.Infrastructure/Persistence/Configurations/Identity/RoleConfiguration.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/Persistence/Configurations/Identity/UserClaimConfiguration.cs b/BlazorShop.Infrastructure/Persistence/Configurations/Identity/UserClaimConfiguration.cs index d6393031..1ad8a619 100644 --- a/BlazorShop.Infrastructure/Persistence/Configurations/Identity/UserClaimConfiguration.cs +++ b/BlazorShop.Infrastructure/Persistence/Configurations/Identity/UserClaimConfiguration.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/Persistence/Configurations/Identity/UserConfiguration.cs b/BlazorShop.Infrastructure/Persistence/Configurations/Identity/UserConfiguration.cs index d527895a..d83a9632 100644 --- a/BlazorShop.Infrastructure/Persistence/Configurations/Identity/UserConfiguration.cs +++ b/BlazorShop.Infrastructure/Persistence/Configurations/Identity/UserConfiguration.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/Persistence/Configurations/Identity/UserLoginConfiguration.cs b/BlazorShop.Infrastructure/Persistence/Configurations/Identity/UserLoginConfiguration.cs index ea7658c5..52423b89 100644 --- a/BlazorShop.Infrastructure/Persistence/Configurations/Identity/UserLoginConfiguration.cs +++ b/BlazorShop.Infrastructure/Persistence/Configurations/Identity/UserLoginConfiguration.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/Persistence/Configurations/Identity/UserRoleConfiguration.cs b/BlazorShop.Infrastructure/Persistence/Configurations/Identity/UserRoleConfiguration.cs index 4d75e53c..4c7593ab 100644 --- a/BlazorShop.Infrastructure/Persistence/Configurations/Identity/UserRoleConfiguration.cs +++ b/BlazorShop.Infrastructure/Persistence/Configurations/Identity/UserRoleConfiguration.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/Persistence/Configurations/Identity/UserTokenConfiguration.cs b/BlazorShop.Infrastructure/Persistence/Configurations/Identity/UserTokenConfiguration.cs index 713f5430..23e687ec 100644 --- a/BlazorShop.Infrastructure/Persistence/Configurations/Identity/UserTokenConfiguration.cs +++ b/BlazorShop.Infrastructure/Persistence/Configurations/Identity/UserTokenConfiguration.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/Persistence/Configurations/InvoiceConfiguration.cs b/BlazorShop.Infrastructure/Persistence/Configurations/InvoiceConfiguration.cs index f7595422..7d19db09 100644 --- a/BlazorShop.Infrastructure/Persistence/Configurations/InvoiceConfiguration.cs +++ b/BlazorShop.Infrastructure/Persistence/Configurations/InvoiceConfiguration.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/Persistence/Configurations/MusicConfiguration.cs b/BlazorShop.Infrastructure/Persistence/Configurations/MusicConfiguration.cs index f61b9205..3103b6df 100644 --- a/BlazorShop.Infrastructure/Persistence/Configurations/MusicConfiguration.cs +++ b/BlazorShop.Infrastructure/Persistence/Configurations/MusicConfiguration.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/Persistence/Configurations/OrderConfiguration.cs b/BlazorShop.Infrastructure/Persistence/Configurations/OrderConfiguration.cs index 415130dc..87e542b7 100644 --- a/BlazorShop.Infrastructure/Persistence/Configurations/OrderConfiguration.cs +++ b/BlazorShop.Infrastructure/Persistence/Configurations/OrderConfiguration.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/Persistence/Configurations/ReceiptConfiguration.cs b/BlazorShop.Infrastructure/Persistence/Configurations/ReceiptConfiguration.cs index f8549ba5..7b90bb40 100644 --- a/BlazorShop.Infrastructure/Persistence/Configurations/ReceiptConfiguration.cs +++ b/BlazorShop.Infrastructure/Persistence/Configurations/ReceiptConfiguration.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/Persistence/Configurations/SubscriberConfiguration.cs b/BlazorShop.Infrastructure/Persistence/Configurations/SubscriberConfiguration.cs index 9a3aa5b5..f775cd0e 100644 --- a/BlazorShop.Infrastructure/Persistence/Configurations/SubscriberConfiguration.cs +++ b/BlazorShop.Infrastructure/Persistence/Configurations/SubscriberConfiguration.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/Persistence/Configurations/SubscriptionConfiguration.cs b/BlazorShop.Infrastructure/Persistence/Configurations/SubscriptionConfiguration.cs index 537225d7..7049dabb 100644 --- a/BlazorShop.Infrastructure/Persistence/Configurations/SubscriptionConfiguration.cs +++ b/BlazorShop.Infrastructure/Persistence/Configurations/SubscriptionConfiguration.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/Persistence/Configurations/TodoItemConfiguration.cs b/BlazorShop.Infrastructure/Persistence/Configurations/TodoItemConfiguration.cs index 5c69726d..0511cc22 100644 --- a/BlazorShop.Infrastructure/Persistence/Configurations/TodoItemConfiguration.cs +++ b/BlazorShop.Infrastructure/Persistence/Configurations/TodoItemConfiguration.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/Persistence/Configurations/TodoListConfiguration.cs b/BlazorShop.Infrastructure/Persistence/Configurations/TodoListConfiguration.cs index 312bed37..77ed2bf6 100644 --- a/BlazorShop.Infrastructure/Persistence/Configurations/TodoListConfiguration.cs +++ b/BlazorShop.Infrastructure/Persistence/Configurations/TodoListConfiguration.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/Services/AccountService.cs b/BlazorShop.Infrastructure/Services/AccountService.cs index 9216e14c..85edabb1 100644 --- a/BlazorShop.Infrastructure/Services/AccountService.cs +++ b/BlazorShop.Infrastructure/Services/AccountService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/Services/DateTimeService.cs b/BlazorShop.Infrastructure/Services/DateTimeService.cs index 2bb7bdf2..4a1b6a1e 100644 --- a/BlazorShop.Infrastructure/Services/DateTimeService.cs +++ b/BlazorShop.Infrastructure/Services/DateTimeService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/Services/EmailService.cs b/BlazorShop.Infrastructure/Services/EmailService.cs index 41ad87bb..831c44d6 100644 --- a/BlazorShop.Infrastructure/Services/EmailService.cs +++ b/BlazorShop.Infrastructure/Services/EmailService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/Services/RoleService.cs b/BlazorShop.Infrastructure/Services/RoleService.cs index b00aeea4..b3420a56 100644 --- a/BlazorShop.Infrastructure/Services/RoleService.cs +++ b/BlazorShop.Infrastructure/Services/RoleService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/Services/UserService.cs b/BlazorShop.Infrastructure/Services/UserService.cs index 9f656cf3..4b6be25e 100644 --- a/BlazorShop.Infrastructure/Services/UserService.cs +++ b/BlazorShop.Infrastructure/Services/UserService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/Utils/AdminSeedModel.cs b/BlazorShop.Infrastructure/Utils/AdminSeedModel.cs index 06e94c37..659e5f1a 100644 --- a/BlazorShop.Infrastructure/Utils/AdminSeedModel.cs +++ b/BlazorShop.Infrastructure/Utils/AdminSeedModel.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/Utils/RolesSeedModel.cs b/BlazorShop.Infrastructure/Utils/RolesSeedModel.cs index 9362e53a..a9f7a46e 100644 --- a/BlazorShop.Infrastructure/Utils/RolesSeedModel.cs +++ b/BlazorShop.Infrastructure/Utils/RolesSeedModel.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.Infrastructure/_Imports.cs b/BlazorShop.Infrastructure/_Imports.cs index c5897754..b7b73ec5 100644 --- a/BlazorShop.Infrastructure/_Imports.cs +++ b/BlazorShop.Infrastructure/_Imports.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/AccountHandler/ChangePasswordCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/AccountHandler/ChangePasswordCommandHandlerTests.cs index d13b7783..74ad886c 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/AccountHandler/ChangePasswordCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/AccountHandler/ChangePasswordCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/AccountHandler/LoginCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/AccountHandler/LoginCommandHandlerTests.cs index 58b53604..52181fd6 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/AccountHandler/LoginCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/AccountHandler/LoginCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/AccountHandler/RegisterCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/AccountHandler/RegisterCommandHandlerTests.cs index 0f982a05..0db91e24 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/AccountHandler/RegisterCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/AccountHandler/RegisterCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/AccountHandler/ResetPasswordCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/AccountHandler/ResetPasswordCommandHandlerTests.cs index 13089807..39c676cb 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/AccountHandler/ResetPasswordCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/AccountHandler/ResetPasswordCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/CartHandler/CreateCartCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/CartHandler/CreateCartCommandHandlerTests.cs index 9481dd61..0256c352 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/CartHandler/CreateCartCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/CartHandler/CreateCartCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/CartHandler/DeleteAllCartsCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/CartHandler/DeleteAllCartsCommandHandlerTests.cs index 6a77fd10..6b3bed32 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/CartHandler/DeleteAllCartsCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/CartHandler/DeleteAllCartsCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/CartHandler/DeleteCartCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/CartHandler/DeleteCartCommandHandlerTests.cs index 77a2e31e..77a302c2 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/CartHandler/DeleteCartCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/CartHandler/DeleteCartCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/CartHandler/UpdateCartCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/CartHandler/UpdateCartCommandHandlerTests.cs index 71c7eb1c..cbd0da70 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/CartHandler/UpdateCartCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/CartHandler/UpdateCartCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/ClotheHandler/CreateClotheCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/ClotheHandler/CreateClotheCommandHandlerTests.cs index 8be8de06..d946055d 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/ClotheHandler/CreateClotheCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/ClotheHandler/CreateClotheCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/ClotheHandler/DeleteClotheCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/ClotheHandler/DeleteClotheCommandHandlerTests.cs index 24965c53..a0e02e4d 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/ClotheHandler/DeleteClotheCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/ClotheHandler/DeleteClotheCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/ClotheHandler/UpdateClotheCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/ClotheHandler/UpdateClotheCommandHandlerTests.cs index 020eb49d..b0596cf4 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/ClotheHandler/UpdateClotheCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/ClotheHandler/UpdateClotheCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/InvoiceHandler/CreateInvoiceCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/InvoiceHandler/CreateInvoiceCommandHandlerTests.cs index 4bd5cd4e..af288bda 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/InvoiceHandler/CreateInvoiceCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/InvoiceHandler/CreateInvoiceCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/InvoiceHandler/DeleteInvoiceCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/InvoiceHandler/DeleteInvoiceCommandHandlerTests.cs index b5a3efae..870706b2 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/InvoiceHandler/DeleteInvoiceCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/InvoiceHandler/DeleteInvoiceCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/InvoiceHandler/UpdateInvoiceCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/InvoiceHandler/UpdateInvoiceCommandHandlerTests.cs index 4eb16286..e263cd15 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/InvoiceHandler/UpdateInvoiceCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/InvoiceHandler/UpdateInvoiceCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/MusicHandler/CreateMusicCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/MusicHandler/CreateMusicCommandHandlerTests.cs index 57bd5fd2..773894d3 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/MusicHandler/CreateMusicCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/MusicHandler/CreateMusicCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/MusicHandler/DeleteMusicCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/MusicHandler/DeleteMusicCommandHandlerTests.cs index 32256e9a..6f5e5800 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/MusicHandler/DeleteMusicCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/MusicHandler/DeleteMusicCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/MusicHandler/UpdateMusicCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/MusicHandler/UpdateMusicCommandHandlerTests.cs index 8f7caaf2..f1049417 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/MusicHandler/UpdateMusicCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/MusicHandler/UpdateMusicCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/OrderHandler/CreateOrderCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/OrderHandler/CreateOrderCommandHandlerTests.cs index 614cf183..b639df10 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/OrderHandler/CreateOrderCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/OrderHandler/CreateOrderCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/OrderHandler/DeleteOrderCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/OrderHandler/DeleteOrderCommandHandlerTests.cs index bb18ad16..fb4020e2 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/OrderHandler/DeleteOrderCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/OrderHandler/DeleteOrderCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/OrderHandler/UpdateOrderCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/OrderHandler/UpdateOrderCommandHandlerTests.cs index a44e3a27..c12f6c1a 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/OrderHandler/UpdateOrderCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/OrderHandler/UpdateOrderCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/ReceiptHandler/CreateReceiptCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/ReceiptHandler/CreateReceiptCommandHandlerTests.cs index c68a53c7..cbd3daae 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/ReceiptHandler/CreateReceiptCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/ReceiptHandler/CreateReceiptCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/ReceiptHandler/DeleteReceiptCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/ReceiptHandler/DeleteReceiptCommandHandlerTests.cs index 9dd638a8..74598f56 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/ReceiptHandler/DeleteReceiptCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/ReceiptHandler/DeleteReceiptCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/ReceiptHandler/UpdateReceiptCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/ReceiptHandler/UpdateReceiptCommandHandlerTests.cs index d5e7f665..cb7e00b0 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/ReceiptHandler/UpdateReceiptCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/ReceiptHandler/UpdateReceiptCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/RoleHandler/CreateRoleCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/RoleHandler/CreateRoleCommandHandlerTests.cs index 36137ac6..9a38e31e 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/RoleHandler/CreateRoleCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/RoleHandler/CreateRoleCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/RoleHandler/DeleteRoleCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/RoleHandler/DeleteRoleCommandHandlerTests.cs index b179026e..a87b5f63 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/RoleHandler/DeleteRoleCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/RoleHandler/DeleteRoleCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/RoleHandler/UpdateRoleCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/RoleHandler/UpdateRoleCommandHandlerTests.cs index bea0a52a..e727f389 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/RoleHandler/UpdateRoleCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/RoleHandler/UpdateRoleCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriberHandler/CreateSubscriberCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriberHandler/CreateSubscriberCommandHandlerTests.cs index a8a03fce..fb93936c 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriberHandler/CreateSubscriberCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriberHandler/CreateSubscriberCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriberHandler/DeleteSubscriberCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriberHandler/DeleteSubscriberCommandHandlerTests.cs index e72ad869..b3c151bb 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriberHandler/DeleteSubscriberCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriberHandler/DeleteSubscriberCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriberHandler/UpdateCreatedSubscriberCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriberHandler/UpdateCreatedSubscriberCommandHandlerTests.cs index e1f37c33..ba59c15a 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriberHandler/UpdateCreatedSubscriberCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriberHandler/UpdateCreatedSubscriberCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriberHandler/UpdateSubscriberCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriberHandler/UpdateSubscriberCommandHandlerTests.cs index 2cef335d..4bad8696 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriberHandler/UpdateSubscriberCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriberHandler/UpdateSubscriberCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriberHandler/UpdateSubscriberStatusCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriberHandler/UpdateSubscriberStatusCommandHandlerTests.cs index f972323e..8c3ce504 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriberHandler/UpdateSubscriberStatusCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriberHandler/UpdateSubscriberStatusCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriptionHandler/CreateSubscriptionCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriptionHandler/CreateSubscriptionCommandHandlerTests.cs index a8aaee34..9d60e718 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriptionHandler/CreateSubscriptionCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriptionHandler/CreateSubscriptionCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriptionHandler/DeleteSubscriptionCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriptionHandler/DeleteSubscriptionCommandHandlerTests.cs index 1a356d0b..ccd936e0 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriptionHandler/DeleteSubscriptionCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriptionHandler/DeleteSubscriptionCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriptionHandler/UpdateSubscriptionCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriptionHandler/UpdateSubscriptionCommandHandlerTests.cs index 81ba08bf..404fbf8d 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriptionHandler/UpdateSubscriptionCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/SubscriptionHandler/UpdateSubscriptionCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/TodoItemHandler/CreateTodoItemCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/TodoItemHandler/CreateTodoItemCommandHandlerTests.cs index 950d9e0b..05e23f29 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/TodoItemHandler/CreateTodoItemCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/TodoItemHandler/CreateTodoItemCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/TodoItemHandler/DeleteTodoItemCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/TodoItemHandler/DeleteTodoItemCommandHandlerTests.cs index 8c91b48a..d2d9c321 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/TodoItemHandler/DeleteTodoItemCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/TodoItemHandler/DeleteTodoItemCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/TodoItemHandler/UpdateTodoItemCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/TodoItemHandler/UpdateTodoItemCommandHandlerTests.cs index 4b224949..792eb9b0 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/TodoItemHandler/UpdateTodoItemCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/TodoItemHandler/UpdateTodoItemCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/TodoListHandler/CreateTodoListCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/TodoListHandler/CreateTodoListCommandHandlerTests.cs index fbbaf92c..8f44387a 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/TodoListHandler/CreateTodoListCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/TodoListHandler/CreateTodoListCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/TodoListHandler/DeleteTodoListCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/TodoListHandler/DeleteTodoListCommandHandlerTests.cs index 8328fd41..10149089 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/TodoListHandler/DeleteTodoListCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/TodoListHandler/DeleteTodoListCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/TodoListHandler/UpdateTodoListCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/TodoListHandler/UpdateTodoListCommandHandlerTests.cs index 04cca4b6..8eb815ad 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/TodoListHandler/UpdateTodoListCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/TodoListHandler/UpdateTodoListCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/UserHandler/ActivateUserCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/UserHandler/ActivateUserCommandHandlerTests.cs index 893ec9fa..27d6c335 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/UserHandler/ActivateUserCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/UserHandler/ActivateUserCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/UserHandler/AssignUserToRoleCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/UserHandler/AssignUserToRoleCommandHandlerTests.cs index 1bd81117..682343c4 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/UserHandler/AssignUserToRoleCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/UserHandler/AssignUserToRoleCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/UserHandler/CreateUserCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/UserHandler/CreateUserCommandHandlerTests.cs index d78fab77..94318980 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/UserHandler/CreateUserCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/UserHandler/CreateUserCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/UserHandler/DeleteUserCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/UserHandler/DeleteUserCommandHandlerTests.cs index 64f5a243..6a42ae7d 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/UserHandler/DeleteUserCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/UserHandler/DeleteUserCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/UserHandler/UpdateUserCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/UserHandler/UpdateUserCommandHandlerTests.cs index d7f4d487..a3718e64 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/UserHandler/UpdateUserCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/UserHandler/UpdateUserCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Commands/UserHandler/UpdateUserEmailCommandHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Commands/UserHandler/UpdateUserEmailCommandHandlerTests.cs index 262ed8cc..564fe4d7 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Commands/UserHandler/UpdateUserEmailCommandHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Commands/UserHandler/UpdateUserEmailCommandHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/CartHandler/GetCartByIdQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/CartHandler/GetCartByIdQueryHandlerTests.cs index 7c6785a5..bf99c0c9 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/CartHandler/GetCartByIdQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/CartHandler/GetCartByIdQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/CartHandler/GetCartsCountQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/CartHandler/GetCartsCountQueryHandlerTests.cs index b404e8c6..7ea64f5f 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/CartHandler/GetCartsCountQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/CartHandler/GetCartsCountQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/CartHandler/GetCartsQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/CartHandler/GetCartsQueryHandlerTests.cs index 5ab55990..a95577b7 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/CartHandler/GetCartsQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/CartHandler/GetCartsQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/ClotheHandler/GetClotheByIdQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/ClotheHandler/GetClotheByIdQueryHandlerTests.cs index 9c75cf3b..13c949cb 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/ClotheHandler/GetClotheByIdQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/ClotheHandler/GetClotheByIdQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/ClotheHandler/GetClothesQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/ClotheHandler/GetClothesQueryHandlerTests.cs index 025fc277..742e28f1 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/ClotheHandler/GetClothesQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/ClotheHandler/GetClothesQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/InvoiceHandler/GetInvoiceByIdQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/InvoiceHandler/GetInvoiceByIdQueryHandlerTests.cs index de72d39a..ff0f524a 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/InvoiceHandler/GetInvoiceByIdQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/InvoiceHandler/GetInvoiceByIdQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/InvoiceHandler/GetInvoicesQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/InvoiceHandler/GetInvoicesQueryHandlerTests.cs index c7338fd9..1ceb1ab4 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/InvoiceHandler/GetInvoicesQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/InvoiceHandler/GetInvoicesQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/MusicHandler/GetMusicByIdQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/MusicHandler/GetMusicByIdQueryHandlerTests.cs index c50b814e..ead014e6 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/MusicHandler/GetMusicByIdQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/MusicHandler/GetMusicByIdQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/MusicHandler/GetMusicsQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/MusicHandler/GetMusicsQueryHandlerTests.cs index cb93f9f2..83ff9c9b 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/MusicHandler/GetMusicsQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/MusicHandler/GetMusicsQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/OrderHandler/GetOrderByIdQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/OrderHandler/GetOrderByIdQueryHandlerTests.cs index d96a016d..63d3f518 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/OrderHandler/GetOrderByIdQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/OrderHandler/GetOrderByIdQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/OrderHandler/GetOrdersQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/OrderHandler/GetOrdersQueryHandlerTests.cs index f0087176..601cf2dd 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/OrderHandler/GetOrdersQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/OrderHandler/GetOrdersQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/ReceiptHandler/GetReceiptByIdQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/ReceiptHandler/GetReceiptByIdQueryHandlerTests.cs index 1f0dc6b6..a5deb9c7 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/ReceiptHandler/GetReceiptByIdQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/ReceiptHandler/GetReceiptByIdQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/ReceiptHandler/GetReceiptsQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/ReceiptHandler/GetReceiptsQueryHandlerTests.cs index f827b947..ed31e10c 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/ReceiptHandler/GetReceiptsQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/ReceiptHandler/GetReceiptsQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/RoleHandler/GetRoleByIdQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/RoleHandler/GetRoleByIdQueryHandlerTests.cs index 429b4184..710b8d28 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/RoleHandler/GetRoleByIdQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/RoleHandler/GetRoleByIdQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/RoleHandler/GetRoleByNormalizedNameQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/RoleHandler/GetRoleByNormalizedNameQueryHandlerTests.cs index 291cdd02..628ac720 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/RoleHandler/GetRoleByNormalizedNameQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/RoleHandler/GetRoleByNormalizedNameQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/RoleHandler/GetRolesForAdminQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/RoleHandler/GetRolesForAdminQueryHandlerTests.cs index bada40b9..ada51aef 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/RoleHandler/GetRolesForAdminQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/RoleHandler/GetRolesForAdminQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/RoleHandler/GetRolesQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/RoleHandler/GetRolesQueryHandlerTests.cs index 155d089b..9ea87a7c 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/RoleHandler/GetRolesQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/RoleHandler/GetRolesQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/SubscriberHandler/GetSubscriberByIdQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/SubscriberHandler/GetSubscriberByIdQueryHandlerTests.cs index 4db85251..34561550 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/SubscriberHandler/GetSubscriberByIdQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/SubscriberHandler/GetSubscriberByIdQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/SubscriberHandler/GetSubscribersQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/SubscriberHandler/GetSubscribersQueryHandlerTests.cs index dd62d2fc..023fcefe 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/SubscriberHandler/GetSubscribersQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/SubscriberHandler/GetSubscribersQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/SubscriberHandler/GetUserSubscribersQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/SubscriberHandler/GetUserSubscribersQueryHandlerTests.cs index 33c22d59..5185a1dd 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/SubscriberHandler/GetUserSubscribersQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/SubscriberHandler/GetUserSubscribersQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/SubscriptionHandler/GetSubscriptionByIdQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/SubscriptionHandler/GetSubscriptionByIdQueryHandlerTests.cs index 49acd138..dd196f03 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/SubscriptionHandler/GetSubscriptionByIdQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/SubscriptionHandler/GetSubscriptionByIdQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/SubscriptionHandler/GetSubscriptionsQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/SubscriptionHandler/GetSubscriptionsQueryHandlerTests.cs index c02c68a8..0228ef6b 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/SubscriptionHandler/GetSubscriptionsQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/SubscriptionHandler/GetSubscriptionsQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/TodoItemHandler/GetTodoItemByIdQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/TodoItemHandler/GetTodoItemByIdQueryHandlerTests.cs index a9016a40..803d9dad 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/TodoItemHandler/GetTodoItemByIdQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/TodoItemHandler/GetTodoItemByIdQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/TodoItemHandler/GetTodoItemsQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/TodoItemHandler/GetTodoItemsQueryHandlerTests.cs index 75b94d57..e143f34a 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/TodoItemHandler/GetTodoItemsQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/TodoItemHandler/GetTodoItemsQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/TodoListHandler/GetTodoListByIdQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/TodoListHandler/GetTodoListByIdQueryHandlerTests.cs index 47f4914f..fb421dc3 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/TodoListHandler/GetTodoListByIdQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/TodoListHandler/GetTodoListByIdQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/TodoListHandler/GetTodoListsQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/TodoListHandler/GetTodoListsQueryHandlerTests.cs index d8f8a63a..d22a8441 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/TodoListHandler/GetTodoListsQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/TodoListHandler/GetTodoListsQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/UserHandler/GetUserByEmailQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/UserHandler/GetUserByEmailQueryHandlerTests.cs index 02010dde..56df2342 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/UserHandler/GetUserByEmailQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/UserHandler/GetUserByEmailQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/UserHandler/GetUserByIdQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/UserHandler/GetUserByIdQueryHandlerTests.cs index cb2646e9..184fe000 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/UserHandler/GetUserByIdQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/UserHandler/GetUserByIdQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/UserHandler/GetUsersInactiveQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/UserHandler/GetUsersInactiveQueryHandlerTests.cs index 19403de1..e6dbffed 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/UserHandler/GetUsersInactiveQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/UserHandler/GetUsersInactiveQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Application/Handlers/Queries/UserHandler/GetUsersQueryHandlerTests.cs b/BlazorShop.UnitTests/Application/Handlers/Queries/UserHandler/GetUsersQueryHandlerTests.cs index 209b26ba..5e583976 100644 --- a/BlazorShop.UnitTests/Application/Handlers/Queries/UserHandler/GetUsersQueryHandlerTests.cs +++ b/BlazorShop.UnitTests/Application/Handlers/Queries/UserHandler/GetUsersQueryHandlerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Controllers/AccountsControllerTests.cs b/BlazorShop.UnitTests/Controllers/AccountsControllerTests.cs index d1d5b7c2..d25b749e 100644 --- a/BlazorShop.UnitTests/Controllers/AccountsControllerTests.cs +++ b/BlazorShop.UnitTests/Controllers/AccountsControllerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Controllers/ApiBaseControllerTests.cs b/BlazorShop.UnitTests/Controllers/ApiBaseControllerTests.cs index 77d49918..c2439046 100644 --- a/BlazorShop.UnitTests/Controllers/ApiBaseControllerTests.cs +++ b/BlazorShop.UnitTests/Controllers/ApiBaseControllerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Controllers/CartsControllerTests.cs b/BlazorShop.UnitTests/Controllers/CartsControllerTests.cs index c54fe68a..4653b4c5 100644 --- a/BlazorShop.UnitTests/Controllers/CartsControllerTests.cs +++ b/BlazorShop.UnitTests/Controllers/CartsControllerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Controllers/ClothesControllerTests.cs b/BlazorShop.UnitTests/Controllers/ClothesControllerTests.cs index 0bdf19ff..6e3b690e 100644 --- a/BlazorShop.UnitTests/Controllers/ClothesControllerTests.cs +++ b/BlazorShop.UnitTests/Controllers/ClothesControllerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Controllers/Filters/ApiExceptionFilterAttributeTests.cs b/BlazorShop.UnitTests/Controllers/Filters/ApiExceptionFilterAttributeTests.cs index 54aba99a..d14fdbc7 100644 --- a/BlazorShop.UnitTests/Controllers/Filters/ApiExceptionFilterAttributeTests.cs +++ b/BlazorShop.UnitTests/Controllers/Filters/ApiExceptionFilterAttributeTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Controllers/Filters/JwtTokenMiddlewareTests.cs b/BlazorShop.UnitTests/Controllers/Filters/JwtTokenMiddlewareTests.cs index e944ed3f..1604a131 100644 --- a/BlazorShop.UnitTests/Controllers/Filters/JwtTokenMiddlewareTests.cs +++ b/BlazorShop.UnitTests/Controllers/Filters/JwtTokenMiddlewareTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Controllers/HomeControllerTests.cs b/BlazorShop.UnitTests/Controllers/HomeControllerTests.cs index 0197b1ad..562e3171 100644 --- a/BlazorShop.UnitTests/Controllers/HomeControllerTests.cs +++ b/BlazorShop.UnitTests/Controllers/HomeControllerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Controllers/InvoicesControllerTests.cs b/BlazorShop.UnitTests/Controllers/InvoicesControllerTests.cs index 6e723425..8e0b9170 100644 --- a/BlazorShop.UnitTests/Controllers/InvoicesControllerTests.cs +++ b/BlazorShop.UnitTests/Controllers/InvoicesControllerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Controllers/MusicsControllerTests.cs b/BlazorShop.UnitTests/Controllers/MusicsControllerTests.cs index de56c0f2..4d95ffb5 100644 --- a/BlazorShop.UnitTests/Controllers/MusicsControllerTests.cs +++ b/BlazorShop.UnitTests/Controllers/MusicsControllerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Controllers/OrdersControllerTests.cs b/BlazorShop.UnitTests/Controllers/OrdersControllerTests.cs index 0f4c141a..09af11b0 100644 --- a/BlazorShop.UnitTests/Controllers/OrdersControllerTests.cs +++ b/BlazorShop.UnitTests/Controllers/OrdersControllerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Controllers/PaymentsControllerTests.cs b/BlazorShop.UnitTests/Controllers/PaymentsControllerTests.cs index 30ebc423..cb84fa5c 100644 --- a/BlazorShop.UnitTests/Controllers/PaymentsControllerTests.cs +++ b/BlazorShop.UnitTests/Controllers/PaymentsControllerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Controllers/ReceiptsControllerTests.cs b/BlazorShop.UnitTests/Controllers/ReceiptsControllerTests.cs index 1caad0f1..d6de8ebd 100644 --- a/BlazorShop.UnitTests/Controllers/ReceiptsControllerTests.cs +++ b/BlazorShop.UnitTests/Controllers/ReceiptsControllerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Controllers/RolesControllerTests.cs b/BlazorShop.UnitTests/Controllers/RolesControllerTests.cs index 35b99109..0db3fd92 100644 --- a/BlazorShop.UnitTests/Controllers/RolesControllerTests.cs +++ b/BlazorShop.UnitTests/Controllers/RolesControllerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Controllers/SubscribersControllerTests.cs b/BlazorShop.UnitTests/Controllers/SubscribersControllerTests.cs index 89bde620..1e8eb642 100644 --- a/BlazorShop.UnitTests/Controllers/SubscribersControllerTests.cs +++ b/BlazorShop.UnitTests/Controllers/SubscribersControllerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Controllers/SubscriptionsControllerTests.cs b/BlazorShop.UnitTests/Controllers/SubscriptionsControllerTests.cs index 35e62ae4..2893edf6 100644 --- a/BlazorShop.UnitTests/Controllers/SubscriptionsControllerTests.cs +++ b/BlazorShop.UnitTests/Controllers/SubscriptionsControllerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Controllers/TodoItemsControllerTests.cs b/BlazorShop.UnitTests/Controllers/TodoItemsControllerTests.cs index 676c1adc..7ad3ce0a 100644 --- a/BlazorShop.UnitTests/Controllers/TodoItemsControllerTests.cs +++ b/BlazorShop.UnitTests/Controllers/TodoItemsControllerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Controllers/TodoListsControllerTests.cs b/BlazorShop.UnitTests/Controllers/TodoListsControllerTests.cs index 63e0e744..645193df 100644 --- a/BlazorShop.UnitTests/Controllers/TodoListsControllerTests.cs +++ b/BlazorShop.UnitTests/Controllers/TodoListsControllerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Controllers/UsersControllerTests.cs b/BlazorShop.UnitTests/Controllers/UsersControllerTests.cs index 87c301df..ac086973 100644 --- a/BlazorShop.UnitTests/Controllers/UsersControllerTests.cs +++ b/BlazorShop.UnitTests/Controllers/UsersControllerTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Infrastructure/AccountServiceTests.cs b/BlazorShop.UnitTests/Infrastructure/AccountServiceTests.cs index 0c7afef8..1696166d 100644 --- a/BlazorShop.UnitTests/Infrastructure/AccountServiceTests.cs +++ b/BlazorShop.UnitTests/Infrastructure/AccountServiceTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Infrastructure/EmailServiceTests.cs b/BlazorShop.UnitTests/Infrastructure/EmailServiceTests.cs index f17f6e30..5c95b851 100644 --- a/BlazorShop.UnitTests/Infrastructure/EmailServiceTests.cs +++ b/BlazorShop.UnitTests/Infrastructure/EmailServiceTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Infrastructure/Persistence/ApplicationDbContextSeedTests.cs b/BlazorShop.UnitTests/Infrastructure/Persistence/ApplicationDbContextSeedTests.cs index 925f4c31..94e54d63 100644 --- a/BlazorShop.UnitTests/Infrastructure/Persistence/ApplicationDbContextSeedTests.cs +++ b/BlazorShop.UnitTests/Infrastructure/Persistence/ApplicationDbContextSeedTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Infrastructure/Persistence/ApplicationDbContextTests.cs b/BlazorShop.UnitTests/Infrastructure/Persistence/ApplicationDbContextTests.cs index db37dac7..261ebbe6 100644 --- a/BlazorShop.UnitTests/Infrastructure/Persistence/ApplicationDbContextTests.cs +++ b/BlazorShop.UnitTests/Infrastructure/Persistence/ApplicationDbContextTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Infrastructure/RoleServiceTests.cs b/BlazorShop.UnitTests/Infrastructure/RoleServiceTests.cs index 16bb5d5f..836ee77d 100644 --- a/BlazorShop.UnitTests/Infrastructure/RoleServiceTests.cs +++ b/BlazorShop.UnitTests/Infrastructure/RoleServiceTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/Infrastructure/UserServiceTests.cs b/BlazorShop.UnitTests/Infrastructure/UserServiceTests.cs index 1fc727b6..f2e79076 100644 --- a/BlazorShop.UnitTests/Infrastructure/UserServiceTests.cs +++ b/BlazorShop.UnitTests/Infrastructure/UserServiceTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/WebClient/Services/MusicServiceTests.cs b/BlazorShop.UnitTests/WebClient/Services/MusicServiceTests.cs index 34a10dad..45d5a6ed 100644 --- a/BlazorShop.UnitTests/WebClient/Services/MusicServiceTests.cs +++ b/BlazorShop.UnitTests/WebClient/Services/MusicServiceTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/WebClient/Services/OrderServiceTests.cs b/BlazorShop.UnitTests/WebClient/Services/OrderServiceTests.cs index 20294954..1257dd0e 100644 --- a/BlazorShop.UnitTests/WebClient/Services/OrderServiceTests.cs +++ b/BlazorShop.UnitTests/WebClient/Services/OrderServiceTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/WebClient/Services/RoleServiceTests.cs b/BlazorShop.UnitTests/WebClient/Services/RoleServiceTests.cs index 3dfa1797..dbef8aba 100644 --- a/BlazorShop.UnitTests/WebClient/Services/RoleServiceTests.cs +++ b/BlazorShop.UnitTests/WebClient/Services/RoleServiceTests.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.UnitTests/_Imports.cs b/BlazorShop.UnitTests/_Imports.cs index a31e4f4a..454ffb1e 100644 --- a/BlazorShop.UnitTests/_Imports.cs +++ b/BlazorShop.UnitTests/_Imports.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebApi/Controllers/AccountsController.cs b/BlazorShop.WebApi/Controllers/AccountsController.cs index 1299b0a7..9d57f91a 100644 --- a/BlazorShop.WebApi/Controllers/AccountsController.cs +++ b/BlazorShop.WebApi/Controllers/AccountsController.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebApi/Controllers/ApiBaseController.cs b/BlazorShop.WebApi/Controllers/ApiBaseController.cs index 7db78a12..415d310a 100644 --- a/BlazorShop.WebApi/Controllers/ApiBaseController.cs +++ b/BlazorShop.WebApi/Controllers/ApiBaseController.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebApi/Controllers/CartsController.cs b/BlazorShop.WebApi/Controllers/CartsController.cs index 94803729..60f36344 100644 --- a/BlazorShop.WebApi/Controllers/CartsController.cs +++ b/BlazorShop.WebApi/Controllers/CartsController.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebApi/Controllers/ClothesController.cs b/BlazorShop.WebApi/Controllers/ClothesController.cs index e4455e5c..a0774e2c 100644 --- a/BlazorShop.WebApi/Controllers/ClothesController.cs +++ b/BlazorShop.WebApi/Controllers/ClothesController.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebApi/Controllers/HomeController.cs b/BlazorShop.WebApi/Controllers/HomeController.cs index 4197fdfb..080674af 100644 --- a/BlazorShop.WebApi/Controllers/HomeController.cs +++ b/BlazorShop.WebApi/Controllers/HomeController.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebApi/Controllers/InvoicesController.cs b/BlazorShop.WebApi/Controllers/InvoicesController.cs index a805b076..0b56fd93 100644 --- a/BlazorShop.WebApi/Controllers/InvoicesController.cs +++ b/BlazorShop.WebApi/Controllers/InvoicesController.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebApi/Controllers/MusicsController.cs b/BlazorShop.WebApi/Controllers/MusicsController.cs index cf611383..d8c2d71f 100644 --- a/BlazorShop.WebApi/Controllers/MusicsController.cs +++ b/BlazorShop.WebApi/Controllers/MusicsController.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebApi/Controllers/OrdersController.cs b/BlazorShop.WebApi/Controllers/OrdersController.cs index 70bbdc0e..5d8deeb3 100644 --- a/BlazorShop.WebApi/Controllers/OrdersController.cs +++ b/BlazorShop.WebApi/Controllers/OrdersController.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebApi/Controllers/PaymentsController.cs b/BlazorShop.WebApi/Controllers/PaymentsController.cs index 1d09db17..3240fd4b 100644 --- a/BlazorShop.WebApi/Controllers/PaymentsController.cs +++ b/BlazorShop.WebApi/Controllers/PaymentsController.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebApi/Controllers/ReceiptsController.cs b/BlazorShop.WebApi/Controllers/ReceiptsController.cs index 0760b8c7..80a50d11 100644 --- a/BlazorShop.WebApi/Controllers/ReceiptsController.cs +++ b/BlazorShop.WebApi/Controllers/ReceiptsController.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebApi/Controllers/RolesController.cs b/BlazorShop.WebApi/Controllers/RolesController.cs index b11ad6e4..122375e6 100644 --- a/BlazorShop.WebApi/Controllers/RolesController.cs +++ b/BlazorShop.WebApi/Controllers/RolesController.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebApi/Controllers/SubscribersController.cs b/BlazorShop.WebApi/Controllers/SubscribersController.cs index 91c4d502..aa1969ff 100644 --- a/BlazorShop.WebApi/Controllers/SubscribersController.cs +++ b/BlazorShop.WebApi/Controllers/SubscribersController.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebApi/Controllers/SubscriptionsController.cs b/BlazorShop.WebApi/Controllers/SubscriptionsController.cs index d739694e..2575b380 100644 --- a/BlazorShop.WebApi/Controllers/SubscriptionsController.cs +++ b/BlazorShop.WebApi/Controllers/SubscriptionsController.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebApi/Controllers/TodoItemsController.cs b/BlazorShop.WebApi/Controllers/TodoItemsController.cs index 33c8b1af..d5180ae7 100644 --- a/BlazorShop.WebApi/Controllers/TodoItemsController.cs +++ b/BlazorShop.WebApi/Controllers/TodoItemsController.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebApi/Controllers/TodoListsController.cs b/BlazorShop.WebApi/Controllers/TodoListsController.cs index 96abb40b..502f5f05 100644 --- a/BlazorShop.WebApi/Controllers/TodoListsController.cs +++ b/BlazorShop.WebApi/Controllers/TodoListsController.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebApi/Controllers/UsersController.cs b/BlazorShop.WebApi/Controllers/UsersController.cs index 8fa692b8..be5677db 100644 --- a/BlazorShop.WebApi/Controllers/UsersController.cs +++ b/BlazorShop.WebApi/Controllers/UsersController.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebApi/Filters/ApiExceptionFilterAttribute.cs b/BlazorShop.WebApi/Filters/ApiExceptionFilterAttribute.cs index 2018c593..4e142213 100644 --- a/BlazorShop.WebApi/Filters/ApiExceptionFilterAttribute.cs +++ b/BlazorShop.WebApi/Filters/ApiExceptionFilterAttribute.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebApi/Filters/JwtTokenMiddleware.cs b/BlazorShop.WebApi/Filters/JwtTokenMiddleware.cs index b79c534c..d568fc1d 100644 --- a/BlazorShop.WebApi/Filters/JwtTokenMiddleware.cs +++ b/BlazorShop.WebApi/Filters/JwtTokenMiddleware.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebApi/Program.cs b/BlazorShop.WebApi/Program.cs index e10e7dc7..e0f56a9c 100644 --- a/BlazorShop.WebApi/Program.cs +++ b/BlazorShop.WebApi/Program.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebApi/_Imports.cs b/BlazorShop.WebApi/_Imports.cs index f911a4f4..0a3bb398 100644 --- a/BlazorShop.WebApi/_Imports.cs +++ b/BlazorShop.WebApi/_Imports.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/App.razor b/BlazorShop.WebClient/App.razor index 8d81ce60..2a0f231c 100644 --- a/BlazorShop.WebClient/App.razor +++ b/BlazorShop.WebClient/App.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Auth/AuthStateProvider.cs b/BlazorShop.WebClient/Auth/AuthStateProvider.cs index 4d5a2ee8..abf49fd2 100644 --- a/BlazorShop.WebClient/Auth/AuthStateProvider.cs +++ b/BlazorShop.WebClient/Auth/AuthStateProvider.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Auth/AuthenticationService.cs b/BlazorShop.WebClient/Auth/AuthenticationService.cs index 7d35acf1..81a719ae 100644 --- a/BlazorShop.WebClient/Auth/AuthenticationService.cs +++ b/BlazorShop.WebClient/Auth/AuthenticationService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Auth/IAuthenticationService.cs b/BlazorShop.WebClient/Auth/IAuthenticationService.cs index 8e4a4026..89e81f1f 100644 --- a/BlazorShop.WebClient/Auth/IAuthenticationService.cs +++ b/BlazorShop.WebClient/Auth/IAuthenticationService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Auth/JwtTokenParser.cs b/BlazorShop.WebClient/Auth/JwtTokenParser.cs index f862fde3..c0b70cba 100644 --- a/BlazorShop.WebClient/Auth/JwtTokenParser.cs +++ b/BlazorShop.WebClient/Auth/JwtTokenParser.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/AuthPolicies/AdminRoleRequirement.cs b/BlazorShop.WebClient/AuthPolicies/AdminRoleRequirement.cs index 6e899c75..30e191ba 100644 --- a/BlazorShop.WebClient/AuthPolicies/AdminRoleRequirement.cs +++ b/BlazorShop.WebClient/AuthPolicies/AdminRoleRequirement.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/AuthPolicies/CustomerRoleRequirement.cs b/BlazorShop.WebClient/AuthPolicies/CustomerRoleRequirement.cs index c004bd2a..922c3df9 100644 --- a/BlazorShop.WebClient/AuthPolicies/CustomerRoleRequirement.cs +++ b/BlazorShop.WebClient/AuthPolicies/CustomerRoleRequirement.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/AuthPolicies/DefaultRoleRequirement.cs b/BlazorShop.WebClient/AuthPolicies/DefaultRoleRequirement.cs index 8993987c..280faca5 100644 --- a/BlazorShop.WebClient/AuthPolicies/DefaultRoleRequirement.cs +++ b/BlazorShop.WebClient/AuthPolicies/DefaultRoleRequirement.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/AuthPolicies/UserRoleRequirement.cs b/BlazorShop.WebClient/AuthPolicies/UserRoleRequirement.cs index bfedd1f2..a01b4b99 100644 --- a/BlazorShop.WebClient/AuthPolicies/UserRoleRequirement.cs +++ b/BlazorShop.WebClient/AuthPolicies/UserRoleRequirement.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Interceptor/HttpInterceptorService.cs b/BlazorShop.WebClient/Interceptor/HttpInterceptorService.cs index 5ba16b71..410dc71b 100644 --- a/BlazorShop.WebClient/Interceptor/HttpInterceptorService.cs +++ b/BlazorShop.WebClient/Interceptor/HttpInterceptorService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Interceptor/HttpResponseException.cs b/BlazorShop.WebClient/Interceptor/HttpResponseException.cs index 91dd80f7..acf37306 100644 --- a/BlazorShop.WebClient/Interceptor/HttpResponseException.cs +++ b/BlazorShop.WebClient/Interceptor/HttpResponseException.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Interfaces/IAccountService.cs b/BlazorShop.WebClient/Interfaces/IAccountService.cs index ed1452d7..fd7eebf0 100644 --- a/BlazorShop.WebClient/Interfaces/IAccountService.cs +++ b/BlazorShop.WebClient/Interfaces/IAccountService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Interfaces/ICartService.cs b/BlazorShop.WebClient/Interfaces/ICartService.cs index 658f1bd0..aea88bbe 100644 --- a/BlazorShop.WebClient/Interfaces/ICartService.cs +++ b/BlazorShop.WebClient/Interfaces/ICartService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Interfaces/IClotheService.cs b/BlazorShop.WebClient/Interfaces/IClotheService.cs index 093ebf02..cab11c18 100644 --- a/BlazorShop.WebClient/Interfaces/IClotheService.cs +++ b/BlazorShop.WebClient/Interfaces/IClotheService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Interfaces/IMusicService.cs b/BlazorShop.WebClient/Interfaces/IMusicService.cs index 731b2467..8cf2ffe1 100644 --- a/BlazorShop.WebClient/Interfaces/IMusicService.cs +++ b/BlazorShop.WebClient/Interfaces/IMusicService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Interfaces/IOrderService.cs b/BlazorShop.WebClient/Interfaces/IOrderService.cs index 33eca57e..753be0bb 100644 --- a/BlazorShop.WebClient/Interfaces/IOrderService.cs +++ b/BlazorShop.WebClient/Interfaces/IOrderService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Interfaces/IReceiptService.cs b/BlazorShop.WebClient/Interfaces/IReceiptService.cs index 93ad7b43..bee691f2 100644 --- a/BlazorShop.WebClient/Interfaces/IReceiptService.cs +++ b/BlazorShop.WebClient/Interfaces/IReceiptService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Interfaces/IRoleService.cs b/BlazorShop.WebClient/Interfaces/IRoleService.cs index 85bc41d0..8da5fc42 100644 --- a/BlazorShop.WebClient/Interfaces/IRoleService.cs +++ b/BlazorShop.WebClient/Interfaces/IRoleService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Interfaces/IStripeService.cs b/BlazorShop.WebClient/Interfaces/IStripeService.cs index c0063c11..b9b2a1f8 100644 --- a/BlazorShop.WebClient/Interfaces/IStripeService.cs +++ b/BlazorShop.WebClient/Interfaces/IStripeService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Interfaces/ISubscriberService.cs b/BlazorShop.WebClient/Interfaces/ISubscriberService.cs index afe94458..dae4099d 100644 --- a/BlazorShop.WebClient/Interfaces/ISubscriberService.cs +++ b/BlazorShop.WebClient/Interfaces/ISubscriberService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Interfaces/ISubscriptionService.cs b/BlazorShop.WebClient/Interfaces/ISubscriptionService.cs index c3f89b2a..38a6cc4e 100644 --- a/BlazorShop.WebClient/Interfaces/ISubscriptionService.cs +++ b/BlazorShop.WebClient/Interfaces/ISubscriptionService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Interfaces/ITodoItemService.cs b/BlazorShop.WebClient/Interfaces/ITodoItemService.cs index dc7bf19e..5be7479b 100644 --- a/BlazorShop.WebClient/Interfaces/ITodoItemService.cs +++ b/BlazorShop.WebClient/Interfaces/ITodoItemService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Interfaces/ITodoListService.cs b/BlazorShop.WebClient/Interfaces/ITodoListService.cs index 71cc368e..a9b69355 100644 --- a/BlazorShop.WebClient/Interfaces/ITodoListService.cs +++ b/BlazorShop.WebClient/Interfaces/ITodoListService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Interfaces/IUserService.cs b/BlazorShop.WebClient/Interfaces/IUserService.cs index 3f95646e..b817df72 100644 --- a/BlazorShop.WebClient/Interfaces/IUserService.cs +++ b/BlazorShop.WebClient/Interfaces/IUserService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Pages/Account/Login.razor b/BlazorShop.WebClient/Pages/Account/Login.razor index 9020ac7d..790d93ed 100644 --- a/BlazorShop.WebClient/Pages/Account/Login.razor +++ b/BlazorShop.WebClient/Pages/Account/Login.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Account/Logout.razor b/BlazorShop.WebClient/Pages/Account/Logout.razor index f7c381a8..6157cc56 100644 --- a/BlazorShop.WebClient/Pages/Account/Logout.razor +++ b/BlazorShop.WebClient/Pages/Account/Logout.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Account/Register.razor b/BlazorShop.WebClient/Pages/Account/Register.razor index e8deccd9..38d551bf 100644 --- a/BlazorShop.WebClient/Pages/Account/Register.razor +++ b/BlazorShop.WebClient/Pages/Account/Register.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Account/ResetPassword.razor b/BlazorShop.WebClient/Pages/Account/ResetPassword.razor index 7b7a8221..a3cb3e01 100644 --- a/BlazorShop.WebClient/Pages/Account/ResetPassword.razor +++ b/BlazorShop.WebClient/Pages/Account/ResetPassword.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Account/VerifyAuth.razor b/BlazorShop.WebClient/Pages/Account/VerifyAuth.razor index c981b4dd..a9df5ebe 100644 --- a/BlazorShop.WebClient/Pages/Account/VerifyAuth.razor +++ b/BlazorShop.WebClient/Pages/Account/VerifyAuth.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Admin/Clothes/AddEditClothe.razor b/BlazorShop.WebClient/Pages/Admin/Clothes/AddEditClothe.razor index 50feee27..5a5ccfb3 100644 --- a/BlazorShop.WebClient/Pages/Admin/Clothes/AddEditClothe.razor +++ b/BlazorShop.WebClient/Pages/Admin/Clothes/AddEditClothe.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Admin/Clothes/Clothes.razor b/BlazorShop.WebClient/Pages/Admin/Clothes/Clothes.razor index 2953c3d0..85153f8f 100644 --- a/BlazorShop.WebClient/Pages/Admin/Clothes/Clothes.razor +++ b/BlazorShop.WebClient/Pages/Admin/Clothes/Clothes.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Admin/Musics/AddEditMusic.razor b/BlazorShop.WebClient/Pages/Admin/Musics/AddEditMusic.razor index b2bf9765..8f00407b 100644 --- a/BlazorShop.WebClient/Pages/Admin/Musics/AddEditMusic.razor +++ b/BlazorShop.WebClient/Pages/Admin/Musics/AddEditMusic.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Admin/Musics/Musics.razor b/BlazorShop.WebClient/Pages/Admin/Musics/Musics.razor index aedf25a0..21c52911 100644 --- a/BlazorShop.WebClient/Pages/Admin/Musics/Musics.razor +++ b/BlazorShop.WebClient/Pages/Admin/Musics/Musics.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Admin/Roles/AddEditRole.razor b/BlazorShop.WebClient/Pages/Admin/Roles/AddEditRole.razor index 6c9e1e99..3ab8e567 100644 --- a/BlazorShop.WebClient/Pages/Admin/Roles/AddEditRole.razor +++ b/BlazorShop.WebClient/Pages/Admin/Roles/AddEditRole.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Admin/Roles/Roles.razor b/BlazorShop.WebClient/Pages/Admin/Roles/Roles.razor index 704a4b0e..db18b76f 100644 --- a/BlazorShop.WebClient/Pages/Admin/Roles/Roles.razor +++ b/BlazorShop.WebClient/Pages/Admin/Roles/Roles.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Admin/Subscribers/Subscribers.razor b/BlazorShop.WebClient/Pages/Admin/Subscribers/Subscribers.razor index 0cf2f9c2..70ba4e83 100644 --- a/BlazorShop.WebClient/Pages/Admin/Subscribers/Subscribers.razor +++ b/BlazorShop.WebClient/Pages/Admin/Subscribers/Subscribers.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Admin/Subscriptions/AddEditSubscription.razor b/BlazorShop.WebClient/Pages/Admin/Subscriptions/AddEditSubscription.razor index ff97466c..42f80900 100644 --- a/BlazorShop.WebClient/Pages/Admin/Subscriptions/AddEditSubscription.razor +++ b/BlazorShop.WebClient/Pages/Admin/Subscriptions/AddEditSubscription.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Admin/Subscriptions/Subscriptions.razor b/BlazorShop.WebClient/Pages/Admin/Subscriptions/Subscriptions.razor index d3c010d3..5170f59e 100644 --- a/BlazorShop.WebClient/Pages/Admin/Subscriptions/Subscriptions.razor +++ b/BlazorShop.WebClient/Pages/Admin/Subscriptions/Subscriptions.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Admin/Todos/Index.razor b/BlazorShop.WebClient/Pages/Admin/Todos/Index.razor index edf83754..29ee1d0d 100644 --- a/BlazorShop.WebClient/Pages/Admin/Todos/Index.razor +++ b/BlazorShop.WebClient/Pages/Admin/Todos/Index.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Admin/Todos/TodoItems.razor b/BlazorShop.WebClient/Pages/Admin/Todos/TodoItems.razor index afad9d64..e227ee98 100644 --- a/BlazorShop.WebClient/Pages/Admin/Todos/TodoItems.razor +++ b/BlazorShop.WebClient/Pages/Admin/Todos/TodoItems.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Admin/Todos/TodoLists.razor b/BlazorShop.WebClient/Pages/Admin/Todos/TodoLists.razor index c35a9862..6a2fe219 100644 --- a/BlazorShop.WebClient/Pages/Admin/Todos/TodoLists.razor +++ b/BlazorShop.WebClient/Pages/Admin/Todos/TodoLists.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Admin/Todos/TodoState.razor b/BlazorShop.WebClient/Pages/Admin/Todos/TodoState.razor index de9fb4ca..eeb1f607 100644 --- a/BlazorShop.WebClient/Pages/Admin/Todos/TodoState.razor +++ b/BlazorShop.WebClient/Pages/Admin/Todos/TodoState.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Admin/Users/AddEditUser.razor b/BlazorShop.WebClient/Pages/Admin/Users/AddEditUser.razor index 0e3bb32b..7afeb74e 100644 --- a/BlazorShop.WebClient/Pages/Admin/Users/AddEditUser.razor +++ b/BlazorShop.WebClient/Pages/Admin/Users/AddEditUser.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Admin/Users/Users.razor b/BlazorShop.WebClient/Pages/Admin/Users/Users.razor index 57d02202..44cf4718 100644 --- a/BlazorShop.WebClient/Pages/Admin/Users/Users.razor +++ b/BlazorShop.WebClient/Pages/Admin/Users/Users.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Cart/Cart.razor b/BlazorShop.WebClient/Pages/Cart/Cart.razor index a006677f..1903f6e7 100644 --- a/BlazorShop.WebClient/Pages/Cart/Cart.razor +++ b/BlazorShop.WebClient/Pages/Cart/Cart.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Clothes/ClotheDetails.razor b/BlazorShop.WebClient/Pages/Clothes/ClotheDetails.razor index cda21955..e50986e6 100644 --- a/BlazorShop.WebClient/Pages/Clothes/ClotheDetails.razor +++ b/BlazorShop.WebClient/Pages/Clothes/ClotheDetails.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Clothes/Index.razor b/BlazorShop.WebClient/Pages/Clothes/Index.razor index d49f63d5..f8a88f18 100644 --- a/BlazorShop.WebClient/Pages/Clothes/Index.razor +++ b/BlazorShop.WebClient/Pages/Clothes/Index.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Index.razor b/BlazorShop.WebClient/Pages/Index.razor index 4aa14ba7..93f06099 100644 --- a/BlazorShop.WebClient/Pages/Index.razor +++ b/BlazorShop.WebClient/Pages/Index.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Internal/Not-found.razor b/BlazorShop.WebClient/Pages/Internal/Not-found.razor index 8862ee7c..2fca3509 100644 --- a/BlazorShop.WebClient/Pages/Internal/Not-found.razor +++ b/BlazorShop.WebClient/Pages/Internal/Not-found.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Internal/Server-error.razor b/BlazorShop.WebClient/Pages/Internal/Server-error.razor index 289889d6..89677a5e 100644 --- a/BlazorShop.WebClient/Pages/Internal/Server-error.razor +++ b/BlazorShop.WebClient/Pages/Internal/Server-error.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Internal/Unauthorized.razor b/BlazorShop.WebClient/Pages/Internal/Unauthorized.razor index e344d2fa..61f11e60 100644 --- a/BlazorShop.WebClient/Pages/Internal/Unauthorized.razor +++ b/BlazorShop.WebClient/Pages/Internal/Unauthorized.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Musics/Index.razor b/BlazorShop.WebClient/Pages/Musics/Index.razor index 99b69f15..1bd8b42e 100644 --- a/BlazorShop.WebClient/Pages/Musics/Index.razor +++ b/BlazorShop.WebClient/Pages/Musics/Index.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Musics/MusicDetails.razor b/BlazorShop.WebClient/Pages/Musics/MusicDetails.razor index 74b4a89f..1044dd69 100644 --- a/BlazorShop.WebClient/Pages/Musics/MusicDetails.razor +++ b/BlazorShop.WebClient/Pages/Musics/MusicDetails.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Orders/MyOrders.razor b/BlazorShop.WebClient/Pages/Orders/MyOrders.razor index 19dbeb91..b3988e89 100644 --- a/BlazorShop.WebClient/Pages/Orders/MyOrders.razor +++ b/BlazorShop.WebClient/Pages/Orders/MyOrders.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Orders/OrderSuccess.razor b/BlazorShop.WebClient/Pages/Orders/OrderSuccess.razor index 6c32bfa7..299ca96b 100644 --- a/BlazorShop.WebClient/Pages/Orders/OrderSuccess.razor +++ b/BlazorShop.WebClient/Pages/Orders/OrderSuccess.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Orders/OrderView.razor b/BlazorShop.WebClient/Pages/Orders/OrderView.razor index a0c013c8..828400a1 100644 --- a/BlazorShop.WebClient/Pages/Orders/OrderView.razor +++ b/BlazorShop.WebClient/Pages/Orders/OrderView.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Receipts/Receipts.razor b/BlazorShop.WebClient/Pages/Receipts/Receipts.razor index 57611aa8..d3f6cf5c 100644 --- a/BlazorShop.WebClient/Pages/Receipts/Receipts.razor +++ b/BlazorShop.WebClient/Pages/Receipts/Receipts.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Subscriptions/MySubscriptions.razor b/BlazorShop.WebClient/Pages/Subscriptions/MySubscriptions.razor index 88c4d298..f5601d26 100644 --- a/BlazorShop.WebClient/Pages/Subscriptions/MySubscriptions.razor +++ b/BlazorShop.WebClient/Pages/Subscriptions/MySubscriptions.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Subscriptions/SubscriptionSuccess.razor b/BlazorShop.WebClient/Pages/Subscriptions/SubscriptionSuccess.razor index be1c571f..3d5f4d8b 100644 --- a/BlazorShop.WebClient/Pages/Subscriptions/SubscriptionSuccess.razor +++ b/BlazorShop.WebClient/Pages/Subscriptions/SubscriptionSuccess.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/Subscriptions/UpdateSubscriptionSuccess.razor b/BlazorShop.WebClient/Pages/Subscriptions/UpdateSubscriptionSuccess.razor index 9bf09d20..3d1f3b18 100644 --- a/BlazorShop.WebClient/Pages/Subscriptions/UpdateSubscriptionSuccess.razor +++ b/BlazorShop.WebClient/Pages/Subscriptions/UpdateSubscriptionSuccess.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Pages/User/Profile.razor b/BlazorShop.WebClient/Pages/User/Profile.razor index a9bc16b7..75d50761 100644 --- a/BlazorShop.WebClient/Pages/User/Profile.razor +++ b/BlazorShop.WebClient/Pages/User/Profile.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Program.cs b/BlazorShop.WebClient/Program.cs index d2d38ae1..b273e148 100644 --- a/BlazorShop.WebClient/Program.cs +++ b/BlazorShop.WebClient/Program.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Services/AccountService.cs b/BlazorShop.WebClient/Services/AccountService.cs index ba142b6d..e7fc2524 100644 --- a/BlazorShop.WebClient/Services/AccountService.cs +++ b/BlazorShop.WebClient/Services/AccountService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Services/CartService.cs b/BlazorShop.WebClient/Services/CartService.cs index f47c24f2..ddd0cb51 100644 --- a/BlazorShop.WebClient/Services/CartService.cs +++ b/BlazorShop.WebClient/Services/CartService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Services/ClotheService.cs b/BlazorShop.WebClient/Services/ClotheService.cs index ffe44338..3c4f711e 100644 --- a/BlazorShop.WebClient/Services/ClotheService.cs +++ b/BlazorShop.WebClient/Services/ClotheService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Services/MusicService.cs b/BlazorShop.WebClient/Services/MusicService.cs index 825d0478..b9fc0856 100644 --- a/BlazorShop.WebClient/Services/MusicService.cs +++ b/BlazorShop.WebClient/Services/MusicService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Services/OrderService.cs b/BlazorShop.WebClient/Services/OrderService.cs index 061a3655..905c8dca 100644 --- a/BlazorShop.WebClient/Services/OrderService.cs +++ b/BlazorShop.WebClient/Services/OrderService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Services/ReceiptService.cs b/BlazorShop.WebClient/Services/ReceiptService.cs index 52ac816c..04aedda0 100644 --- a/BlazorShop.WebClient/Services/ReceiptService.cs +++ b/BlazorShop.WebClient/Services/ReceiptService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Services/RoleService.cs b/BlazorShop.WebClient/Services/RoleService.cs index ec6b9535..3750cfbb 100644 --- a/BlazorShop.WebClient/Services/RoleService.cs +++ b/BlazorShop.WebClient/Services/RoleService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Services/SessionStorageService.cs b/BlazorShop.WebClient/Services/SessionStorageService.cs index ac4fbd22..2e8f6421 100644 --- a/BlazorShop.WebClient/Services/SessionStorageService.cs +++ b/BlazorShop.WebClient/Services/SessionStorageService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Services/StripeService.cs b/BlazorShop.WebClient/Services/StripeService.cs index 8776c402..9ec0687f 100644 --- a/BlazorShop.WebClient/Services/StripeService.cs +++ b/BlazorShop.WebClient/Services/StripeService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Services/SubscriberService.cs b/BlazorShop.WebClient/Services/SubscriberService.cs index 2c6e601e..8060545c 100644 --- a/BlazorShop.WebClient/Services/SubscriberService.cs +++ b/BlazorShop.WebClient/Services/SubscriberService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Services/SubscriptionService.cs b/BlazorShop.WebClient/Services/SubscriptionService.cs index 604280a9..43cd2bb9 100644 --- a/BlazorShop.WebClient/Services/SubscriptionService.cs +++ b/BlazorShop.WebClient/Services/SubscriptionService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Services/TodoItemService.cs b/BlazorShop.WebClient/Services/TodoItemService.cs index 1acb46d3..a49c12d6 100644 --- a/BlazorShop.WebClient/Services/TodoItemService.cs +++ b/BlazorShop.WebClient/Services/TodoItemService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Services/TodoListService.cs b/BlazorShop.WebClient/Services/TodoListService.cs index 547db1b7..c3dc06d6 100644 --- a/BlazorShop.WebClient/Services/TodoListService.cs +++ b/BlazorShop.WebClient/Services/TodoListService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Services/UserService.cs b/BlazorShop.WebClient/Services/UserService.cs index 1ba330d5..74cbf1f9 100644 --- a/BlazorShop.WebClient/Services/UserService.cs +++ b/BlazorShop.WebClient/Services/UserService.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Shared/AppState.razor b/BlazorShop.WebClient/Shared/AppState.razor index 1ae34669..bfe86e44 100644 --- a/BlazorShop.WebClient/Shared/AppState.razor +++ b/BlazorShop.WebClient/Shared/AppState.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Shared/JsInteropConstants.cs b/BlazorShop.WebClient/Shared/JsInteropConstants.cs index d69b165b..48a973f4 100644 --- a/BlazorShop.WebClient/Shared/JsInteropConstants.cs +++ b/BlazorShop.WebClient/Shared/JsInteropConstants.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/Shared/MainLayout.razor b/BlazorShop.WebClient/Shared/MainLayout.razor index f7c90d65..4f3f7ddf 100644 --- a/BlazorShop.WebClient/Shared/MainLayout.razor +++ b/BlazorShop.WebClient/Shared/MainLayout.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/Shared/NavMenu.razor b/BlazorShop.WebClient/Shared/NavMenu.razor index 583cd0fe..095db727 100644 --- a/BlazorShop.WebClient/Shared/NavMenu.razor +++ b/BlazorShop.WebClient/Shared/NavMenu.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WebClient/_Imports.cs b/BlazorShop.WebClient/_Imports.cs index 10090cdf..b7adfbb6 100644 --- a/BlazorShop.WebClient/_Imports.cs +++ b/BlazorShop.WebClient/_Imports.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WebClient/_Imports.razor b/BlazorShop.WebClient/_Imports.razor index 98d1eb6a..4c47ab70 100644 --- a/BlazorShop.WebClient/_Imports.razor +++ b/BlazorShop.WebClient/_Imports.razor @@ -1,5 +1,5 @@ @* - + Copyright (c) Beniamin Jitca. All rights reserved. *@ diff --git a/BlazorShop.WorkerService/Program.cs b/BlazorShop.WorkerService/Program.cs index ccb8164e..a7fee95b 100644 --- a/BlazorShop.WorkerService/Program.cs +++ b/BlazorShop.WorkerService/Program.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WorkerService/Worker.cs b/BlazorShop.WorkerService/Worker.cs index 72458b8f..afe7301e 100644 --- a/BlazorShop.WorkerService/Worker.cs +++ b/BlazorShop.WorkerService/Worker.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. // diff --git a/BlazorShop.WorkerService/_Imports.cs b/BlazorShop.WorkerService/_Imports.cs index 46cb2c57..088fae09 100644 --- a/BlazorShop.WorkerService/_Imports.cs +++ b/BlazorShop.WorkerService/_Imports.cs @@ -1,4 +1,4 @@ -// +// // Copyright (c) Beniamin Jitca. All rights reserved. //