예제 #1
0
        //Juan

        public Bon getBonByBestellingId(int bestellingId)
        {
            bonDAO = new BonDAO();
            Bon bon = bonDAO.getBonByBestellingId(bestellingId);

            return(bon);
        }
예제 #2
0
 public void newBonByBestellingId(int bestellingId)
 {
     bonDAO = new BonDAO();
     bonDAO.newBonByBestellingId(bestellingId);
 }
예제 #3
0
 public AfrekenenService()
 {
     bestellingService = new BestellingService();
     bonDAO            = new BonDAO();
 }