Exemple #1
0
 public SalesTaxManager(IHttpContextAccessor contextAccessor, ISalesTaxRepository repository, IBankAccountRepository bankAccountRepository, IUnitOfWork unitOfWork)
 {
     _userId                = contextAccessor.HttpContext.User.GetUserId();
     _repository            = repository;
     _bankAccountRepository = bankAccountRepository;
     _unitOfWork            = unitOfWork;
 }
Exemple #2
0
 public AccountingService(IPaymentInfoRepository paymentRepository,
                          SalesTaxRepository taxRepository, ObjectCache cache)
 {
     this.paymentRepo = paymentRepository;
     this.taxRepo     = taxRepository;
     this.cache       = cache;
 }
        public SalesTaxController(ISalesTaxRepository repository, string catalog, LoginView view)
        {
            this._LoginId = view.LoginId.ToLong();
            this._UserId = view.UserId.ToInt();
            this._OfficeId = view.OfficeId.ToInt();
            this._Catalog = catalog;

            this.SalesTaxRepository = repository;
        }
        public SalesTaxController(ISalesTaxRepository repository, string catalog, LoginView view)
        {
            this._LoginId  = view.LoginId.ToLong();
            this._UserId   = view.UserId.ToInt();
            this._OfficeId = view.OfficeId.ToInt();
            this._Catalog  = catalog;

            this.SalesTaxRepository = repository;
        }
        public SalesTaxController()
        {
            this._LoginId = AppUsers.GetCurrent().View.LoginId.ToLong();
            this._UserId = AppUsers.GetCurrent().View.UserId.ToInt();
            this._OfficeId = AppUsers.GetCurrent().View.OfficeId.ToInt();
            this._Catalog = AppUsers.GetCurrentUserDB();

            this.SalesTaxRepository = new MixERP.Net.Schemas.Core.Data.SalesTax
            {
                _Catalog = this._Catalog,
                _LoginId = this._LoginId,
                _UserId = this._UserId
            };
        }
        public SalesTaxController()
        {
            this._LoginId  = AppUsers.GetCurrent().View.LoginId.ToLong();
            this._UserId   = AppUsers.GetCurrent().View.UserId.ToInt();
            this._OfficeId = AppUsers.GetCurrent().View.OfficeId.ToInt();
            this._Catalog  = AppUsers.GetCurrentUserDB();

            this.SalesTaxRepository = new MixERP.Net.Schemas.Core.Data.SalesTax
            {
                _Catalog = this._Catalog,
                _LoginId = this._LoginId,
                _UserId  = this._UserId
            };
        }
 public ReceiptService(ISalesTaxRepository salesTaxRepository)
 {
     _salesTaxRepository = salesTaxRepository;
 }
Exemple #8
0
 public AccountingService()
 {
     this.paymentRepo = new PaymentInfoRepository();
     this.taxRepo     = new SalesTaxRepository();
     this.cache       = MemoryCache.Default;
 }