public PartyAdvisoryInfoController(IPartyAdvisoryInfoServices partyAdvisoryInfoServices, ICustomInfoServices customInfoServices, IMapper mapper, IRedisCacheManager redisCacheManager)
 {
     _partyAdvisoryInfoServices = partyAdvisoryInfoServices;
     _customInfoServices        = customInfoServices;
     _redisCacheManager         = redisCacheManager;
     _mapper = mapper;
 }
示例#2
0
 public CustomInfoController(ICustomInfoServices _customInfoServices, IRedisCacheManager redisCacheManager)
 {
     customInfoServices = _customInfoServices;
     _redisCacheManager = redisCacheManager;
 }