public ProdutosServicosController(IMapper mapper,
                                   IProdutoServicoService produtoServicoService,
                                   IUriService uriService,
                                   INotificador notificador,
                                   IUser user) : base(mapper, uriService, notificador, user)
 {
     _mapper = mapper;
     _produtoServicoService = produtoServicoService;
 }
 public ProdutoServicoController(IProdutoServicoService produtoServico,
                                 ITokenService tokenService)
 {
     _produtoServicoService = produtoServico;
     _tokenService          = tokenService;
 }