Esempio n. 1
0
 public OrderApplication(IOrderRepository orderRepository, IAuthHelper authHelper,
                         IConfiguration configuration, IShopInventoryAcl shopInventoryAcl)
 {
     _orderRepository  = orderRepository;
     _authHelper       = authHelper;
     _configuration    = configuration;
     _shopInventoryAcl = shopInventoryAcl;
 }
Esempio n. 2
0
        //private readonly ISmsService _smsService;
        //private readonly IShopAccountAcl _shopAccountAcl;

        public OrderApplication(IOrderRepository orderRepository, IAuthHelper authHelper, IConfiguration configuration,
                                IShopInventoryAcl shopInventoryAcl /*, ISmsService smsService, IShopAccountAcl shopAccountAcl*/)
        {
            _orderRepository  = orderRepository;
            _authHelper       = authHelper;
            _configuration    = configuration;
            _shopInventoryAcl = shopInventoryAcl;
            //_smsService = smsService;
            //_shopAccountAcl = shopAccountAcl;
        }