Ejemplo n.º 1
0
 public StatCategoryViewModel(IStatCategory statCategory, Action <StatCategoryViewModel> onDelete)
 {
     StatCategory = statCategory;
     Name         = statCategory.StatName.Value;
     OnDelete     = onDelete;
 }
Ejemplo n.º 2
0
 public StatCategoryViewModel(IStatCategory statCategory)
 {
     StatCategory = statCategory;
     Value        = StatCategory.StatName.ToString();
 }