Add get city to the control

This commit is contained in:
Guille Gutierrez 2024-05-24 11:23:47 +02:00
parent 64449aee1d
commit 7851968bdc

View File

@ -252,3 +252,6 @@ class DBControl:
:param application_uuid: the id of the application to get :param application_uuid: the id of the application to get
""" """
self._application.delete(application_uuid) self._application.delete(application_uuid)
def get_city(self, city_id):
return self._city.get_by_id(city_id)