public MaintenanceService()
 {
     _fileTagService = new FileTagService();
 }
Exemple #2
0
 public ThumbnailService()
 {
     _fileTagService = new FileTagService();
 }
Exemple #3
0
 public SongService()
 {
     _fileTagService = new FileTagService();
     _playedRandomSongs = new List<int>();
     _totalSongCount = Directory.GetFiles(Settings.Default.SongLocation).Count();
 }
 public PlayListItemService()
 {
     _playListService = new PlayListService();
     _thumbnailService = new ThumbnailService();
     _fileTagService = new FileTagService();
 }