Example #1
0
        public Shortener(IShortenerDb db)
        {
            if (db == null)
            {
                throw new ArgumentNullException("db");
            }

            _db = db;
        }
Example #2
0
		public Shortener (IShortenerDb db)
		{
			if(db == null) throw new ArgumentNullException("db");
			
			_db = db;
		}