handle estimate

This commit is contained in:
Paul Schneider 2017-03-03 00:11:18 +01:00
commit ec5f3b9867

View file

@ -34,7 +34,10 @@ namespace ZicMoove.Droid.Services
notificationManager = (NotificationManager)GetSystemService(Context.NotificationService); notificationManager = (NotificationManager)GetSystemService(Context.NotificationService);
Handlers = new Dictionary<string, IGCMessageHandler> Handlers = new Dictionary<string, IGCMessageHandler>
{ {
{"BookQuery", new BookQueryGCMHandler(this,notificationManager,notificationBuilder) } {"RdvQuery", new BookQueryGCMHandler(this,notificationManager,notificationBuilder) },
{"Estimation", new EstimateGCMHandler(this,notificationManager,notificationBuilder) },
{"HairCutQuery", new HairCutQueryGCMHandler(this,notificationManager,notificationBuilder) },
}; };
} }