public List <PartApi> GetAllForUser(int userId, int take = -1, int offset = 0)
        {
            var kockice = kockicaService.GetAllForUser(userId, take, offset).ToList();

            return(Mapper.Map <List <PartApi> >(kockice));
        }