public IMultiService Get(int depth) { if (depth == _depth) { return(this); } if (_next == null) { _next = Create(_depth + 1); } return(_next.Get(depth)); }
public index() { countryService = new CountryServiceEF(); }