public AuxiliaryHelper(LedgerContext ledger, ICacheHelper cache, IAccountBookHelper acctBook, HttpContextBase context)
 {
     _ledger   = ledger;
     _cache    = cache;
     _acctBook = acctBook;
     _context  = context;
 }
 public AccountBookApiController(IAccountBookHelper acctBook,
                                 ICertificateWordHelper certWord,
                                 IModelValidation modelValid,
                                 IAuxiliaryHelper auxType,
                                 IAccountHelper account)
 {
     _acctBook   = acctBook;
     _modelValid = modelValid;
     _certWord   = certWord;
     _auxType    = auxType;
     _account    = account;
 }
Beispiel #3
0
 public VoucherHelper(LedgerContext ledger,
                      ICacheHelper cache,
                      IAccountBookHelper acctBook,
                      HttpContextBase context,
                      IAccountHelper account)
 {
     _ledger   = ledger;
     _cache    = cache;
     _acctBook = acctBook;
     _context  = context;
     _account  = account;
 }
        public ModelValidation(ILog log,
                               ICompanyHelper company,
                               IVoucherHelper voucher,
                               IAccountBookHelper accountBook,
                               IBizSetting setting,
                               IBizCustomer customer)
        {
            _log         = log;
            _company     = company;
            _voucher     = voucher;
            _accountBook = accountBook;

            _setting  = setting;
            _customer = customer;
        }