public IActionResult GetAll()
        {
            var razlozi       = _iRazlogService.GetAll();
            var razloziRowDto = _mapper.Map <IEnumerable <RazlogRowDto> >(razlozi);

            return(Ok(razloziRowDto));
        }