Esempio n. 1
0
 public SignUpService(
     ISmsService smsService,
     ITotpCodeService totpCodeService,
     IIdentityDbContext identityDbContext)
 {
     _smsService        = smsService;
     _totpCodeService   = totpCodeService;
     _identityDbContext = identityDbContext;
 }
Esempio n. 2
0
        public EventVoucherListViewModel(IBaseRepository <Models.Voucher> voucherRepository, IVoucherService voucherService, INavigationService navigationService, IEventAggregator eventAggregator, IBarCodeService barCodeService, ITotpCodeService totpCodeService, IUIServices uiServices) : base(uiServices, navigationService)
        {
            _voucherService    = voucherService;
            _navigationService = navigationService;
            _eventAggregator   = eventAggregator;
            _barCodeService    = barCodeService;
            _totpCodeService   = totpCodeService;
            _voucherRepository = voucherRepository;

            GetEventVoucherListCommand = new DelegateCommand(GetEventVoucherListCommandAction);
        }