From 0e956b22e016e4c1221cb1cd2e2a4a643659f0d7 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Fri, 3 Mar 2017 00:11:18 +0100 Subject: [PATCH] handle estimate --- ZicMoove/ZicMoove.Droid/Services/GcmListenerService.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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) }, + }; }