Esempio n. 1
0
        public IMultiService Get(int depth)
        {
            if (depth == _depth)
            {
                return(this);
            }

            if (_next == null)
            {
                _next = Create(_depth + 1);
            }

            return(_next.Get(depth));
        }
Esempio n. 2
0
 public index()
 {
     countryService = new CountryServiceEF();
 }