public async Task <IActionResult> Tattoos(int id)
        {
            if (id == 0)
            {
                id = _userManager.GetProfileId(User);
            }
            var profile = await _profileService.GetProfileWithTattoos(id);

            if (profile == null)
            {
                return(NotFound());
            }
            var profileTattoosViewModel = _profileViewModelService
                                          .GetProfileTattoosViewModel(profile, _userManager.GetProfileId(User));

            return(View(profileTattoosViewModel));
        }