You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
using NPin.Framework.Ddd.Application;
|
|
|
|
|
using NPin.Framework.Upms.Application.Contracts;
|
|
|
|
|
using NPin.Framework.Upms.Domain;
|
|
|
|
|
using Volo.Abp.BackgroundWorkers.Quartz;
|
|
|
|
|
|
|
|
|
|
namespace NPin.Framework.Upms.Application;
|
|
|
|
|
|
|
|
|
|
[DependsOn(
|
|
|
|
|
typeof(NPinFrameworkUpmsApplicationContractsModule),
|
|
|
|
|
typeof(NPinFrameworkUpmsDomainModule),
|
|
|
|
|
// framework
|
|
|
|
|
typeof(NPinFrameworkDddApplicationModule),
|
|
|
|
|
typeof(AbpBackgroundWorkersQuartzModule)
|
|
|
|
|
)]
|
|
|
|
|
public class NPinFrameworkUpmsApplicationModule : AbpModule
|
|
|
|
|
{
|
|
|
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
|
|
|
{
|
|
|
|
|
context.Services.AddCaptcha();
|
|
|
|
|
}
|
|
|
|
|
}
|