public string GetStatesById(int id) { string state; state = _statesRepository.FirstOrDefault(x => x.Id == id).ToString(); return(state); }