public async Task <IActionResult> DajTipoveProizvoda()
        {
            try
            {
                var tipoviProizvoda = await _helper.DajTipoveProizvoda();

                return(Ok(tipoviProizvoda));
            }
            catch (Exception ex)
            {
                return(BadRequest(ex.Message));
            }
        }