BMC:Change controller Name FirebaseNotificationController to NotificationController

This commit is contained in:
Palash Biswas 2022-12-01 17:58:16 +05:30
parent c38e4e6599
commit 02243079b2

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;
}