Пример #1
0
        public EntityListViewModel(CreateBaseCommand <EntityListViewModel <TEntityViewModel, TGetEntityModel> > createLoadCommand)
        {
            LoadCommand = createLoadCommand(this);

            EntityPageVM = new PaginatedListViewModel <TGetEntityModel>(LoadCommand);
        }
Пример #2
0
 public ArticleListViewModel(CreateBaseCommand <EntityListViewModel <ArticleViewModel, GetArticleModel> > createLoadCommand) : base(createLoadCommand)
 {
 }
Пример #3
0
 public CommentListViewModel(CreateBaseCommand <EntityListViewModel <CommentViewModel, GetCommentModel> > createLoadCommand) : base(createLoadCommand)
 {
 }
Пример #4
0
 public UserListViewModel(CreateBaseCommand <EntityListViewModel <PublicUserViewModel, GetPublicUserModel> > createLoadCommand) : base(createLoadCommand)
 {
 }
Пример #5
0
 public BoardListViewModel(CreateBaseCommand <EntityListViewModel <BoardViewModel, GetBoardModel> > createLoadCommand) : base(createLoadCommand)
 {
 }