This repository has been archived on 2021-09-15. You can view files and clone it, but cannot push or open issues or pull requests.
L3GestionParking/src/m/Parking.py

18 lines
358 B
Python

__author__ = 'sidya'
class Parking :
def __init__(self, placesParNiv, nbNiv):
self.__nbPlacesParNiveau = placesParNiv
self.__prix = 10
self.__nbNiveaux = nbNiv
def recherchePlace(self,voiture):
pass
def nbPlacesLibresParNiveau(self, niveau):
pass
def addAbonnement(self, Abonnement):
pass