예제 #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)
 {
 }