public CreateSongUC()
        {
            InitializeComponent();

            this._songCategoryService = new SongCategoryService();

            Load();
        }
Example #2
0
        public fSongDetail(Song song)
        {
            InitializeComponent();

            this._songCategoryService = new SongCategoryService();
            this.Song = song;

            Load();
        }
Example #3
0
        public fManager()
        {
            InitializeComponent();

            this._songService         = new SongService();
            this._songCategoryService = new SongCategoryService();

            Load();
        }
Example #4
0
        public fPersonal()
        {
            InitializeComponent();

            this._songPersonalService = new SongPersonalService();
            this._songService         = new SongService();
            this._songCategoryService = new SongCategoryService();

            Load();
        }
        public UpdateSongUC(Song song)
        {
            InitializeComponent();

            this._songCategoryService = new SongCategoryService();

            this.song = song;

            Load();
        }
Example #6
0
        public fPlaylist()
        {
            InitializeComponent();

            SetStatusFilter(false);

            Control.CheckForIllegalCrossThreadCalls = false;

            this._songService         = new SongService();
            this._songCategoryService = new SongCategoryService();

            Load();
        }
 public SongCategoriesController(ISongCategoryService categoryService)
 {
     _categoryService = categoryService;
 }
Example #8
0
 public SongCategoriesController(ISongCategoryService songCategoryService)
 {
     _songCategoryService = songCategoryService;
 }