public void Delete(string id)
        {
            var location = GetLocationById(id);

            locationsRepository.Delete(location);
        }