mirror of https://github.com/abpframework/abp.git
14 changed files with 36 additions and 33 deletions
@ -1,9 +1,14 @@ |
|||
using Volo.Abp.Application.Services; |
|||
using Volo.Abp.Identity.Localization; |
|||
|
|||
namespace Volo.Abp.Identity |
|||
{ |
|||
public abstract class IdentityAppServiceBase : ApplicationService |
|||
{ |
|||
|
|||
protected IdentityAppServiceBase() |
|||
{ |
|||
ObjectMapperContext = typeof(AbpIdentityApplicationModule); |
|||
LocalizationResource = typeof(IdentityResource); |
|||
} |
|||
} |
|||
} |
|||
|
|||
@ -0,0 +1,12 @@ |
|||
using Volo.Abp.AspNetCore.Mvc.UI.RazorPages; |
|||
|
|||
namespace Volo.Abp.Identity.Web.Pages.Identity |
|||
{ |
|||
public abstract class IdentityPageModel : AbpPageModel |
|||
{ |
|||
protected IdentityPageModel() |
|||
{ |
|||
ObjectMapperContext = typeof(AbpIdentityWebModule); |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue