コード例 #1
0
 public ChartofAccountManager(IHttpContextAccessor contextAccessor,
                              IChartOfAccountRepository Repository,
                              IUnitOfWork unitOfWork)
 {
     _userId     = contextAccessor.HttpContext.User.GetUserId();
     _repository = Repository;
     _unitOfWork = unitOfWork;
 }
コード例 #2
0
 public ChartOfAccountService(IChartOfAccountRepository ChartOfAccount)
 => this.ChartOfAccount = ChartOfAccount;
コード例 #3
0
 public ChartOfAccountService(IChartOfAccountRepository anfChartOfAccountRepository, IUnitOfWork unitOfWork)
 {
     this._ChartOfAccountRepository = anfChartOfAccountRepository;
     this._UnitOfWork = unitOfWork;
 }