public TaxTypeService(ITaxTypeRepository taxTypeRepository)
 {
     this._taxTypeRepository = taxTypeRepository;
 }
Beispiel #2
0
 public TaxTypeBusiness(ITaxTypeRepository taxTypeRepository)
 {
     _taxTypeRepository = taxTypeRepository;
 }
 public TaxController(ITaxTypeRepository repository)
 {
     _repository = repository;
 }
Beispiel #4
0
 public DataLayer(AppDbContext appDbContext, ITaxTypeRepository taxType)
 {
     _appDbContext = appDbContext;
     _taxType      = taxType;
 }
Beispiel #5
0
 public TaxTypesController(IUnitOfWork unitOfWork, ITaxTypeRepository taxTypesRepository, IMediator mediator)
 {
     _unitOfWork         = unitOfWork;
     _taxTypesRepository = taxTypesRepository;
     _mediator           = mediator;
 }