/// <summary> /// Metodo para ejecutar la ubicacion por id de una location. /// </summary> /// <exception cref="DatabaseException"> /// Lanzada si ocurre un fallo al ejecutar la funcion en la base de /// datos /// </exception> public void Execute() { DAOFactory factory = DAOFactory.GetFactory(DAOFactory.Type.Postgres); LocationDAO locationDao = factory.GetLocationDAO(); _location = locationDao.GetLocationById(_id); }