Beispiel #1
0
 public DeleteEntityTypeCommandHandler(IEvaUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork ?? throw new ArgumentNullException(nameof(unitOfWork));
 }
Beispiel #2
0
 public CreateAttributeCommandHandler(IEvaUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork ?? throw new ArgumentNullException(nameof(unitOfWork));
 }
Beispiel #3
0
 public UpdateAttributeCommandHandler(IEvaUnitOfWork unitOfWork, IMapper mapper)
 {
     _unitOfWork = unitOfWork ?? throw new ArgumentNullException(nameof(unitOfWork));
     _mapper     = mapper ?? throw new ArgumentNullException(nameof(mapper));
 }