示例#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();
 }