Esempio n. 1
0
 public ProcessSwipeHandler(IProductsService prodSvc, IPointsOfSaleService posSvc, IOffersService offSvc, IIdentityService idSvc, IAccountingGroupsService agSvc, IBusPublisher busPublisher, IAccountingService acSvc)
 {
     _prodSvc      = prodSvc;
     _posSvc       = posSvc;
     _offSvc       = offSvc;
     _idSvc        = idSvc;
     _agSvc        = agSvc;
     _busPublisher = busPublisher;
     _acSvc        = acSvc;
 }
Esempio n. 2
0
 public AccountingGroupVerifier(IAccountingGroupsService service)
     : base("accounting_group", "accounting group")
 {
     _service = service ?? throw new ArgumentNullException(nameof(service));
 }
Esempio n. 3
0
 public AdvancedUserRequirementHandler(IAccountingGroupsService accountingGroupsService, IPointsOfSaleService pointsOfSaleService)
 {
     _accountingGroupsService = accountingGroupsService ?? throw new ArgumentNullException(nameof(accountingGroupsService));
     _pointsOfSaleService     = pointsOfSaleService ?? throw new ArgumentNullException(nameof(pointsOfSaleService));
 }
 public DeleteOrphanedAuthorizationsActivity(IBusPublisher busPublisher, IAccountingGroupsService agService, ILogger <DeleteOrphanedAuthorizationsActivity> logger) : base(logger)
 {
     _busPublisher = busPublisher ?? throw new ArgumentNullException(nameof(busPublisher));
     _agService    = agService ?? throw new ArgumentNullException(nameof(agService));
 }
Esempio n. 5
0
 public AccountingGroupsController(IBusPublisher busPublisher, IAccountingGroupsService accountingGroupsService, IAccountingGroupAuthorizationLoader authLoader) : base(busPublisher)
 {
     _accountingGroupsService = accountingGroupsService ?? throw new ArgumentNullException(nameof(accountingGroupsService));
     _authLoader = authLoader ?? throw new ArgumentNullException(nameof(authLoader));
 }
Esempio n. 6
0
 public AccountingGroupAuthorizationLoader(IAccountingGroupsService accountingGroupsService)
 {
     _accountingGroupsService = accountingGroupsService ?? throw new ArgumentNullException(nameof(accountingGroupsService));
 }