Cake.Web.Models.BlogPageViewModel.BlogPageViewModel C# (CSharp) Метод

BlogPageViewModel() публичный Метод

public BlogPageViewModel ( IReadOnlyList posts, IReadOnlyList categories, IReadOnlyList archive, IReadOnlyList authors ) : System
posts IReadOnlyList
categories IReadOnlyList
archive IReadOnlyList
authors IReadOnlyList
Результат System
        public BlogPageViewModel(
            IReadOnlyList<BlogPost> posts,
            IReadOnlyList<BlogCategory> categories,
            IReadOnlyList<DateTime> archive,
            IReadOnlyList<string> authors)
            : base(categories, archive, authors)
        {
            Posts = posts;
        }
BlogPageViewModel