示例#1
0
 public DownPaymentController(IServiceProvider serviceProvider)
 {
     _identityService = serviceProvider.GetService <IIdentityService>();
     _validateService = serviceProvider.GetService <IValidateService>();
     _service         = serviceProvider.GetService <IDownPaymentService>();
     _mapper          = serviceProvider.GetService <IMapper>();
 }
 public RealEstatePropertyPurchaseFirstRewardSubscriber(
     string connectionString,
     string exchangeName,
     IDownPaymentService downPaymentService,
     ILogFactory logFactory)
     : base(connectionString, exchangeName, logFactory)
 {
     _downPaymentService = downPaymentService;
 }