Exemple #1
0
        public CommunicationBll(IConfigurationBll configurationBll)
        {
            if (configurationBll == null)
            {
                throw new ArgumentNullException("configurationBll");
            }

            _configurationBll = configurationBll;
        }
        public GiftValidationBll(IValidationBll validationBll, IConfigurationBll configurationBll)
        {
            if (configurationBll == null)
            {
                throw new ArgumentNullException("configurationBll");
            }
            if (validationBll == null)
            {
                throw new ArgumentNullException("validationBll");
            }

            _configurationBll = configurationBll;
            _validationBll    = validationBll;
        }
Exemple #3
0
        public PosBll(IConfigurationBll configurationBll, IPosDal posDal)
        {
            if (configurationBll == null)
            {
                throw new ArgumentNullException("configurationBll");
            }
            if (posDal == null)
            {
                throw new ArgumentNullException("posDal");
            }

            _configurationBll = configurationBll;
            _posDal           = posDal;
        }
Exemple #4
0
        public PdfShartBll(IConfigurationBll configurationBll, IProductsBll productBll, ITransactionsBll transactionsBll)
        {
            if (configurationBll == null)
            {
                throw new ArgumentNullException("configurationBll");
            }
            if (productBll == null)
            {
                throw new ArgumentNullException("productBll");
            }
            if (transactionsBll == null)
            {
                throw new ArgumentNullException("transactionsBll");
            }

            _productsBll      = productBll;
            _configurationBll = configurationBll;
            _transactionsBll  = transactionsBll;
        }
        public TransactionsBll(IConfigurationBll configurationBll, ISecurityBll securityBll, ITransactionDal transactionDal)
        {
            if (configurationBll == null)
            {
                throw new ArgumentNullException("configurationBll");
            }
            if (securityBll == null)
            {
                throw new ArgumentNullException("securityBll");
            }
            if (transactionDal == null)
            {
                throw new ArgumentNullException("transactionDal");
            }

            _configurationBll = configurationBll;
            _securityBll      = securityBll;
            _transactionDal   = transactionDal;
        }