public async Task <ActionResult <Location> > GetLocationForCompany(int id) { var location = _locationService.GetByCompanyId(id); if (location == null) { return(NotFound("Nije nadjena lokacija za kompaniju")); } return(Ok(location)); }