public IHttpActionResult PutAllergen(int id)
        {
            try
            {
                profilesService = new ProfilesService(User.Identity.Name);
                profilesService.AddAllergen(id);
            }
            catch (Exception)
            {
                return(NotFound());
            }

            return(StatusCode(HttpStatusCode.NoContent));
        }