mirror of https://github.com/abpframework/abp.git
58 changed files with 179 additions and 56 deletions
@ -0,0 +1,14 @@ |
|||
using Volo.Abp.Application.Services; |
|||
using Volo.Blogging.Localization; |
|||
|
|||
namespace Volo.Blogging |
|||
{ |
|||
public abstract class BloggingAppServiceBase : ApplicationService |
|||
{ |
|||
protected BloggingAppServiceBase() |
|||
{ |
|||
ObjectMapperContext = typeof(BloggingApplicationModule); |
|||
LocalizationResource = typeof(BloggingResource); |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,14 @@ |
|||
using Volo.Abp.AspNetCore.Mvc; |
|||
using Volo.Blogging.Localization; |
|||
|
|||
namespace Volo.Blogging.Areas.Blog.Controllers |
|||
{ |
|||
public abstract class BloggingControllerBase : AbpController |
|||
{ |
|||
protected BloggingControllerBase() |
|||
{ |
|||
ObjectMapperContext = typeof(BloggingWebModule); |
|||
LocalizationResource = typeof(BloggingResource); |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,12 @@ |
|||
using Volo.Abp.AspNetCore.Mvc.UI.RazorPages; |
|||
|
|||
namespace Volo.Blogging.Pages.Blog |
|||
{ |
|||
public class BloggingPageModel : AbpPageModel |
|||
{ |
|||
public BloggingPageModel() |
|||
{ |
|||
ObjectMapperContext = typeof(BloggingWebModule); |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,12 @@ |
|||
using Volo.Abp.AspNetCore.Mvc.UI.RazorPages; |
|||
|
|||
namespace Volo.Docs.Admin.Pages.Docs.Admin |
|||
{ |
|||
public class DocsAdminPageModel : AbpPageModel |
|||
{ |
|||
public DocsAdminPageModel() |
|||
{ |
|||
ObjectMapperContext = typeof(DocsAdminWebModule); |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,14 @@ |
|||
using Volo.Abp.Application.Services; |
|||
using Volo.Docs.Localization; |
|||
|
|||
namespace Volo.Docs |
|||
{ |
|||
public abstract class DocsAppServiceBase : ApplicationService |
|||
{ |
|||
protected DocsAppServiceBase() |
|||
{ |
|||
ObjectMapperContext = typeof(DocsApplicationModule); |
|||
LocalizationResource = typeof(DocsResource); |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,14 @@ |
|||
using Volo.Abp.Application.Services; |
|||
using Volo.Abp.FeatureManagement.Localization; |
|||
|
|||
namespace Volo.Abp.FeatureManagement |
|||
{ |
|||
public abstract class FeatureManagementAppServiceBase : ApplicationService |
|||
{ |
|||
protected FeatureManagementAppServiceBase() |
|||
{ |
|||
ObjectMapperContext = typeof(AbpFeatureManagementApplicationModule); |
|||
LocalizationResource = typeof(AbpFeatureManagementResource); |
|||
} |
|||
} |
|||
} |
|||
@ -1,9 +1,14 @@ |
|||
using Volo.Abp.Application.Services; |
|||
using Volo.Abp.TenantManagement.Localization; |
|||
|
|||
namespace Volo.Abp.TenantManagement |
|||
{ |
|||
public class TenantManagementAppServiceBase : ApplicationService |
|||
public abstract class TenantManagementAppServiceBase : ApplicationService |
|||
{ |
|||
|
|||
protected TenantManagementAppServiceBase() |
|||
{ |
|||
ObjectMapperContext = typeof(AbpTenantManagementApplicationModule); |
|||
LocalizationResource = typeof(AbpTenantManagementResource); |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,12 @@ |
|||
using Volo.Abp.AspNetCore.Mvc.UI.RazorPages; |
|||
|
|||
namespace Volo.Abp.TenantManagement.Web.Pages.TenantManagement.Tenants |
|||
{ |
|||
public class TenantManagementPageModel : AbpPageModel |
|||
{ |
|||
public TenantManagementPageModel() |
|||
{ |
|||
ObjectMapperContext = typeof(AbpTenantManagementWebModule); |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue