public ChartofAccountManager(IHttpContextAccessor contextAccessor, IChartOfAccountRepository Repository, IUnitOfWork unitOfWork) { _userId = contextAccessor.HttpContext.User.GetUserId(); _repository = Repository; _unitOfWork = unitOfWork; }
public ChartOfAccountService(IChartOfAccountRepository ChartOfAccount) => this.ChartOfAccount = ChartOfAccount;
public ChartOfAccountService(IChartOfAccountRepository anfChartOfAccountRepository, IUnitOfWork unitOfWork) { this._ChartOfAccountRepository = anfChartOfAccountRepository; this._UnitOfWork = unitOfWork; }