public IList <Region> GetRegionsByCountry(int countryId) { RegionService regionService = new RegionService(this._repository); return(regionService.GetRegionsByCountryId(countryId).OrderBy(x => x.Name).ToList()); }
public IList<Region> GetRegionsByCountry(int countryId) { RegionService regionService = new RegionService(this._repository); return regionService.GetRegionsByCountryId(countryId).OrderBy(x => x.Name).ToList(); }