using LifePayment.Application.Contracts;
|
using Microsoft.Extensions.DependencyInjection;
|
using Volo.Abp.AspNetCore.Mvc;
|
using Volo.Abp.Modularity;
|
|
namespace LifePayment
|
{
|
[DependsOn(typeof(LifePaymentServicesApplicationContractsModule), typeof(AbpAspNetCoreMvcModule))]
|
public class LifePaymentServicesHttpApiModule : AbpModule
|
{
|
public override void PreConfigureServices(ServiceConfigurationContext context)
|
{
|
PreConfigure<IMvcBuilder>(mvcBuilder =>
|
{
|
mvcBuilder.AddApplicationPartIfNotExists(typeof(LifePaymentServicesHttpApiModule).Assembly);
|
});
|
}
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
{
|
}
|
}
|
}
|