Beispiel #1
0
        Random _myRng = new Random(); // They're all the rage.

        #endregion Fields

        #region Constructors

        public FileSelector( StatusDatabase db,
                           PlaylistCriteria criteria )
        {
            // Passed us a null reference parameter?
             Debug.Assert( null != db );
             Debug.Assert( null != criteria );

             _database = db;
             _criteria = criteria;
        }
Beispiel #2
0
 public void SetCriteria( PlaylistCriteria criteria )
 {
     _criteria = criteria;
 }