예제 #1
0
        public IActionResult LocationsByServiceType(int serviceTypeId)
        {
            var locations = _repo.LocationsByServiceType(serviceTypeId);

            return(Ok(locations));
        }