/// <summary>
 /// Adds correct HATEOAS link references to Category hypermedia model
 /// </summary>
 /// <param name="HyperMediaModel">Hypermedia model of type Category to add references to</param>
 /// <param name="Id">Id of category resource to add reference to</param>
 public static void AddReferences(this CategoryDto item, int Id)
 {
     item.AddCategoryReferences(Id);
 }