do it public

vnext
Paul Schneider 8 years ago
parent 98522e03cd
commit bf89b1c4df
2 changed files with 4 additions and 3 deletions

@ -13,7 +13,7 @@ using ZicMoove.Droid.Interfaces;
namespace ZicMoove.Droid.Services.GCMHandlers namespace ZicMoove.Droid.Services.GCMHandlers
{ {
abstract class GCMessageHandler : IGCMessageHandler public abstract class GCMessageHandler : IGCMessageHandler
{ {
protected Context context; protected Context context;
protected NotificationManager notificationManager; protected NotificationManager notificationManager;

@ -18,9 +18,10 @@ namespace ZicMoove.Droid.Services.GCMHandlers
using Model; using Model;
using Model.Musical; using Model.Musical;
class BookQueryGCMHandler : GCMessageHandler public class BookQueryGCMHandler : GCMessageHandler
{ {
public BookQueryGCMHandler(Context context, public BookQueryGCMHandler(
Context context,
NotificationManager manager, NotificationManager manager,
Notification.Builder builder) : base(context,manager,builder) Notification.Builder builder) : base(context,manager,builder)
{ {

Loading…