| | |
| | | using System.Threading.Tasks; |
| | | using Volo.Abp; |
| | | using Volo.Abp.AspNetCore.Mvc; |
| | | using Volo.Abp.DistributedLocking; |
| | | using Volo.Abp.Uow; |
| | | |
| | | namespace LifePayment.HttpApi |
| | |
| | | public class ACOOLYNotifyController : AbpController |
| | | { |
| | | private readonly ILifePayService _lifePayService; |
| | | private readonly IAbpDistributedLock distributedLock; |
| | | private readonly ILogger<ACOOLYNotifyController> _logger; |
| | | |
| | | public ACOOLYNotifyController( |
| | | ILogger<ACOOLYNotifyController> logger, |
| | | ILifePayService lifePayService) |
| | | ILifePayService lifePayService, |
| | | IAbpDistributedLock distributedLock) |
| | | { |
| | | _logger = logger; |
| | | _lifePayService = lifePayService; |
| | | this.distributedLock = distributedLock; |
| | | } |
| | | |
| | | /// <summary> |