Browse Source

BMC:Change controller Name FirebaseNotificationController to NotificationController

feature/ModificationForSentNotificationAPI
Palash Biswas 2 years ago
parent
commit
02243079b2
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      BCS.BMC/src/BCS.BMC.Web.Mvc/Controllers/NotificationController.cs

BCS.BMC/src/BCS.BMC.Web.Mvc/Controllers/FirebaseNotificationController.cs → BCS.BMC/src/BCS.BMC.Web.Mvc/Controllers/NotificationController.cs View File

@ -13,11 +13,11 @@ namespace BCS.BMC.Web.Controllers
{
[Route("api/[controller]/[action]")]
public class FirebaseNotificationController : BMCControllerBase
public class NotificationController : BMCControllerBase
{
private readonly IFirebaseNotificationAppService _notificationService;
public FirebaseNotificationController(IFirebaseNotificationAppService notificationService)
public NotificationController(IFirebaseNotificationAppService notificationService)
{
_notificationService = notificationService;
}

Loading…
Cancel
Save