Ejemplo n.º 1
0
 public MainMenuCLI(IParkDAO parkDAO, ICampGroundDAO campGroundDAO, ICampSiteDAO campSiteDAO, IReservationDAO reservationDAO)
 {
     this.parkDAO        = parkDAO;
     this.campGroundDAO  = campGroundDAO;
     this.campSiteDAO    = campSiteDAO;
     this.reservationDAO = reservationDAO;
 }
Ejemplo n.º 2
0
 public NationParkCLI(IParkDAO parkDAO, ICampGroundDAO campGroundDAO, ISiteDAO siteDAO, IReservationDAO reservationDAO)
 {
     this.parkDAO        = parkDAO;
     this.campGroundDAO  = campGroundDAO;
     this.reservationDAO = reservationDAO;
     this.siteDAO        = siteDAO;
 }