public IHttpActionResult Get(int id)
        {
            var result = AttributeService.GetSingle(id);

            return(Ok(result));
        }