Exemplo n.º 1
0
        public Shortener(IShortenerDb db)
        {
            if (db == null)
            {
                throw new ArgumentNullException("db");
            }

            _db = db;
        }
Exemplo n.º 2
0
		public Shortener (IShortenerDb db)
		{
			if(db == null) throw new ArgumentNullException("db");
			
			_db = db;
		}