public PeopleController(IPeopleService peopleService, ICitysService citysService, ICountryService countryService, ILanguageService languageService)
 {
     _peopleService   = peopleService;
     _citysService    = citysService;
     _countryService  = countryService;
     _languageService = languageService;
 }
 // GET: api/<ReactController>
 public ReactController(IPeopleService peopleService, ICitysService citysService)
 {
     _cityService   = citysService;
     _peopleService = peopleService;
 }
 public CitiesController(IPeopleService peopleService, ICitysService citysService, ICountryService countryService)
 {
     _countryService = countryService;
     _peopleService  = peopleService;
     _citysService   = citysService;
 }