public PagamentoService(IPagamentoDapperRepository pagamentoDapperRepository, ITrocoItemDapperRepository trocoItemDapperRepository, IPagamentoEFCoreRepository pagamentoEFCoreRepository, ITrocoItemEFCoreRepository trocoItemEFCoreRepository, INotificador notificador) : base(notificador) { _pagamentoDapperRepository = pagamentoDapperRepository; _trocoItemDapperRepository = trocoItemDapperRepository; _pagamentoEFCoreRepository = pagamentoEFCoreRepository; _trocoItemEFCoreRepository = trocoItemEFCoreRepository; }
public PagamentoAppService(IPagamentoService pagamentoService, IPagamentoDapperRepository pagamentoDapperRepository, IMapper mapper, IUnitOfWork unitOfWork, INotificador notificador) : base(unitOfWork, notificador) { _pagamentoService = pagamentoService; _pagamentoDapperRepository = pagamentoDapperRepository; _mapper = mapper; }