handle estimate

This commit is contained in:
2017-03-03 00:11:18 +01:00
parent 1200f437c2
commit 0e956b22e0

View File

@ -34,7 +34,10 @@ namespace ZicMoove.Droid.Services
notificationManager = (NotificationManager)GetSystemService(Context.NotificationService);
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) },
};
}