using LifePayment.Domain.Shared;
using Microsoft.Extensions.DependencyInjection;
using Volo.Abp;
using Volo.Abp.Modularity;

namespace LifePayment.Domain
{
    [DependsOn(typeof(AbpBaseFeatureModule), typeof(LifePaymentServicesDomainSharedModule))]
    public class LifePaymentServicesDomainModule : AbpModule
    {
        public override void ConfigureServices(ServiceConfigurationContext context)
        {
            context.Services.AddAutoMapperObjectMapper<LifePaymentServicesDomainModule>();
        }
    }
}