public IActionResult LocationsByServiceType(int serviceTypeId)
        {
            var locations = _repo.LocationsByServiceType(serviceTypeId);

            return(Ok(locations));
        }