public GetPlayListQuery(PlayListQueryPort playListQuery)
 {
     this.playListQuery = playListQuery;
 }
 public void SetUp()
 {
     playListQuery       = Substitute.For <PlayListQueryPort>();
     getAllPlayListQuery = new GetAllPlayListQuery(playListQuery);
 }