public PostViewModel(Post post, IList<Category> allCategories) { Post = post; AllCategories = new List<PostCategory>(); foreach (Category c in allCategories) { AllCategories.Add(new PostCategory(c, OnPost(c.Id))); } }
public PostViewModel(Post post) : this(post, new List<Category>()) { }