public StatCategoryViewModel(IStatCategory statCategory, Action <StatCategoryViewModel> onDelete)
 {
     StatCategory = statCategory;
     Name         = statCategory.StatName.Value;
     OnDelete     = onDelete;
 }
 public StatCategoryViewModel(IStatCategory statCategory)
 {
     StatCategory = statCategory;
     Value        = StatCategory.StatName.ToString();
 }