public DashboardController(IDashboardService dashboardService, IMapper mapper, ICurrentUserContext currentUserContext, IOwnerTypeService ownerTypeService)
 {
     _dashboardService   = dashboardService;
     _mapper             = mapper;
     _currentUserContext = currentUserContext;
     _ownerTypeService   = ownerTypeService;
 }
Example #2
0
 public PaymentUrlDataService(
     PaymentSettings paymentSettings,
     IOwnerTypeService ownerTypeService,
     ILegalEntityService legalEntityService,
     IIdentityRepository identityRepository)
 {
     _ownerTypeService       = ownerTypeService;
     _legalEntityService     = legalEntityService;
     _identityRepository     = identityRepository;
     _fxpaygateSettings      = paymentSettings.Fxpaygate;
     _creditVouchersSettings = paymentSettings.CreditVouchers;
 }
Example #3
0
 public OwnerTypeController(IOwnerTypeService ownerTypeService, IMapper mapper)
 {
     _ownerTypeService = ownerTypeService;
     _mapper           = mapper;
 }