public ProxyQuery(ICatsaDbUnitOfWork unitOfWork, IMapper mapper) : base(unitOfWork, mapper)
 {
 }
Exemplo n.º 2
0
 public BaseQuery(ICatsaDbUnitOfWork unitOfWork, IMapper mapper)
 {
     _unitOfWork = unitOfWork ?? throw new ArgumentNullException(nameof(unitOfWork));
     _mapper     = mapper ?? throw new ArgumentNullException(nameof(mapper));
 }
 public ProxyCommand(ICatsaDbUnitOfWork unitOfWork, IMapper mapper) : base(unitOfWork, mapper)
 {
 }
Exemplo n.º 4
0
 public BaseCommand(ICatsaDbUnitOfWork unitOfWork, IMapper mapper)
 {
     _unitOfWork    = unitOfWork ?? throw new ArgumentNullException(nameof(unitOfWork));
     _mapper        = mapper ?? throw new ArgumentNullException(nameof(mapper));
     DataBaseAction = DataBaseActionEnum.Save;
 }