Ejemplo n.º 1
0
        public MarqueeViewModel(IMarquee marquee)
        {
            if (marquee == null)
                throw new ArgumentNullException("marquee");

            this.marquee = marquee;
            this.location = marquee.Location;
            this.category = marquee.Category;
            this.name = marquee.Name;
            this.subtitle = marquee.Subtitle;
        }
Ejemplo n.º 2
0
        public MarqueeViewModel(IMarquee marquee)
        {
            if (marquee == null)
            {
                throw new ArgumentNullException("marquee");
            }

            this.marquee  = marquee;
            this.location = marquee.Location;
            this.category = marquee.Category;
            this.name     = marquee.Name;
            this.subtitle = marquee.Subtitle;
        }