public async Task <ActionResult <IEnumerable <County> > > AddCounties(IEnumerable <County> counties) { await _countyRepository.CreateAll(counties); return(CreatedAtAction("GetCounties", counties)); }