diff --git a/ZicMoove/ZicMoove.Droid/Services/GcmListenerService.cs b/ZicMoove/ZicMoove.Droid/Services/GcmListenerService.cs index 93ccc50b..cb79b563 100644 --- a/ZicMoove/ZicMoove.Droid/Services/GcmListenerService.cs +++ b/ZicMoove/ZicMoove.Droid/Services/GcmListenerService.cs @@ -34,7 +34,10 @@ namespace ZicMoove.Droid.Services notificationManager = (NotificationManager)GetSystemService(Context.NotificationService); Handlers = new Dictionary { - {"BookQuery", new BookQueryGCMHandler(this,notificationManager,notificationBuilder) } + {"RdvQuery", new BookQueryGCMHandler(this,notificationManager,notificationBuilder) }, + {"Estimation", new EstimateGCMHandler(this,notificationManager,notificationBuilder) }, + {"HairCutQuery", new HairCutQueryGCMHandler(this,notificationManager,notificationBuilder) }, + }; }