Пример #1
0
        public void BindTo(object o)
        {
            if (o == null)
            {
                return;
            }

            if (o is ArticlesDataSourceResult)
            {
                _data = (o as ArticlesDataSourceResult).ImagesSupplementaires;
            }
        }
        public void BindTo(object o)
        {
            if (o == null)
            {
                return;
            }

            if (o is ArticlesDataSourceResult)
            {
                _data = (o as ArticlesDataSourceResult).Videos;
            }
        }
Пример #3
0
        void IEquihiraBindable.BindTo(object o)
        {
            if (o == null)
            {
                return;
            }

            if (o is ArticlesDataSourceResult)
            {
                _data = (o as ArticlesDataSourceResult).ImagesSupplementaires;
                _prd  = (o as ArticlesDataSourceResult).Article;
            }
        }