public override void WillOpenNotification(NotificarePushLib library, NotificareNotification notification)
 {
     Console.WriteLine ("Will open notification");
 }
 public override void WillExecuteAction(NotificarePushLib library, NotificareNotification notification)
 {
     Console.WriteLine ("Will exexcute action");
 }
 public override void DidFailToOpenNotification(NotificarePushLib library, NotificareNotification notification)
 {
     Console.WriteLine ("Failed to open notification");
 }
 public override void DidOpenNotification(NotificarePushLib library, NotificareNotification notification)
 {
     Console.WriteLine ("Did open notification: {0}", notification);
 }
 public override void DidCloseNotification(NotificarePushLib library, NotificareNotification notification)
 {
     Console.WriteLine ("Did close notification");
 }