Exemplo n.º 1
0
 public Listerner(BookSystemManager bsm, HandleBookSysEvent booklibEvent)
 {
     bsm.bookSysEvent += booklibEvent;// attach function to the event delegate
 }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            BookSystemManager bookSysManger = new BookSystemManager();

            bookSysManger.start();
        }