Ejemplo n.º 1
0
        //this focuses on desktop part of it.
        //not sure how i would eventually integrate the phone portion.
        //for now, don't worry about it.  because has to first make sure i have something.  can alway redo parts later if necessary.

        public PlaylistSongDashboardViewModel(IPlaylistSongMainLogic logic)
        {
            _logic = logic;
            if (Aggregator == null)
            {
                throw new BasicBlankException("Needs aggregator in order to use the dashboard view model");
            }
        }
 public PlaylistSongBuilderViewModel(IPlaylistSongMainLogic logic)
 {
     _logic = logic;
 }