From 8b30f91723cafd256ff1c00c79dfafeaaa97a20d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Tue, 22 Sep 2020 17:46:56 +0300 Subject: [PATCH] #5550 Rename BlazoriseCrudPageBase to AbpCrudPageBase --- ...riseCrudPageBase.cs => AbpCrudPageBase.cs} | 24 +++++++++---------- .../Pages/Identity/RoleManagement.razor.cs | 2 +- .../Pages/Identity/UserManagement.razor.cs | 2 +- 3 files changed, 14 insertions(+), 14 deletions(-) rename framework/src/Volo.Abp.BlazoriseUI/Volo/Abp/BlazoriseUI/{BlazoriseCrudPageBase.cs => AbpCrudPageBase.cs} (96%) diff --git a/framework/src/Volo.Abp.BlazoriseUI/Volo/Abp/BlazoriseUI/BlazoriseCrudPageBase.cs b/framework/src/Volo.Abp.BlazoriseUI/Volo/Abp/BlazoriseUI/AbpCrudPageBase.cs similarity index 96% rename from framework/src/Volo.Abp.BlazoriseUI/Volo/Abp/BlazoriseUI/BlazoriseCrudPageBase.cs rename to framework/src/Volo.Abp.BlazoriseUI/Volo/Abp/BlazoriseUI/AbpCrudPageBase.cs index c99b3094c5..7289ebe954 100644 --- a/framework/src/Volo.Abp.BlazoriseUI/Volo/Abp/BlazoriseUI/BlazoriseCrudPageBase.cs +++ b/framework/src/Volo.Abp.BlazoriseUI/Volo/Abp/BlazoriseUI/AbpCrudPageBase.cs @@ -18,11 +18,11 @@ using Volo.Abp.ObjectMapping; namespace Volo.Abp.BlazoriseUI { - public abstract class BlazoriseCrudPageBase< + public abstract class AbpCrudPageBase< TAppService, TEntityDto, TKey> - : BlazoriseCrudPageBase< + : AbpCrudPageBase< TAppService, TEntityDto, TKey, @@ -34,12 +34,12 @@ namespace Volo.Abp.BlazoriseUI { } - public abstract class BlazoriseCrudPageBase< + public abstract class AbpCrudPageBase< TAppService, TEntityDto, TKey, TGetListInput> - : BlazoriseCrudPageBase< + : AbpCrudPageBase< TAppService, TEntityDto, TKey, @@ -54,13 +54,13 @@ namespace Volo.Abp.BlazoriseUI { } - public abstract class BlazoriseCrudPageBase< + public abstract class AbpCrudPageBase< TAppService, TEntityDto, TKey, TGetListInput, TCreateInput> - : BlazoriseCrudPageBase< + : AbpCrudPageBase< TAppService, TEntityDto, TKey, @@ -78,14 +78,14 @@ namespace Volo.Abp.BlazoriseUI { } - public abstract class BlazoriseCrudPageBase< + public abstract class AbpCrudPageBase< TAppService, TEntityDto, TKey, TGetListInput, TCreateInput, TUpdateInput> - : BlazoriseCrudPageBase< + : AbpCrudPageBase< TAppService, TEntityDto, TEntityDto, @@ -106,7 +106,7 @@ namespace Volo.Abp.BlazoriseUI { } - public abstract class BlazoriseCrudPageBase< + public abstract class AbpCrudPageBase< TAppService, TGetOutputDto, TGetListOutputDto, @@ -114,7 +114,7 @@ namespace Volo.Abp.BlazoriseUI TGetListInput, TCreateInput, TUpdateInput> - : BlazoriseCrudPageBase< + : AbpCrudPageBase< TAppService, TGetOutputDto, TGetListOutputDto, @@ -140,7 +140,7 @@ namespace Volo.Abp.BlazoriseUI { } - public abstract class BlazoriseCrudPageBase< + public abstract class AbpCrudPageBase< TAppService, TGetOutputDto, TGetListOutputDto, @@ -231,7 +231,7 @@ namespace Volo.Abp.BlazoriseUI return reference; } - protected BlazoriseCrudPageBase() + protected AbpCrudPageBase() { NewEntity = new TCreateViewModel(); EditingEntity = new TUpdateViewModel(); diff --git a/modules/identity/src/Volo.Abp.Identity.Blazor/Pages/Identity/RoleManagement.razor.cs b/modules/identity/src/Volo.Abp.Identity.Blazor/Pages/Identity/RoleManagement.razor.cs index 92c527e970..bccf3ddbd8 100644 --- a/modules/identity/src/Volo.Abp.Identity.Blazor/Pages/Identity/RoleManagement.razor.cs +++ b/modules/identity/src/Volo.Abp.Identity.Blazor/Pages/Identity/RoleManagement.razor.cs @@ -7,7 +7,7 @@ using Volo.Abp.PermissionManagement.Blazor.Components; namespace Volo.Abp.Identity.Blazor.Pages.Identity { - public abstract class RoleManagementBase : BlazoriseCrudPageBase + public abstract class RoleManagementBase : AbpCrudPageBase { protected const string PermissionProviderName = "R"; diff --git a/modules/identity/src/Volo.Abp.Identity.Blazor/Pages/Identity/UserManagement.razor.cs b/modules/identity/src/Volo.Abp.Identity.Blazor/Pages/Identity/UserManagement.razor.cs index ca6f1e3870..5aeddf58e3 100644 --- a/modules/identity/src/Volo.Abp.Identity.Blazor/Pages/Identity/UserManagement.razor.cs +++ b/modules/identity/src/Volo.Abp.Identity.Blazor/Pages/Identity/UserManagement.razor.cs @@ -8,7 +8,7 @@ using Volo.Abp.PermissionManagement.Blazor.Components; namespace Volo.Abp.Identity.Blazor.Pages.Identity { - public abstract class UserManagementBase : BlazoriseCrudPageBase + public abstract class UserManagementBase : AbpCrudPageBase { protected const string PermissionProviderName = "U";