From 03dbd16d3ef8ae67ecbebe269ab2e76f3b7bb033 Mon Sep 17 00:00:00 2001 From: Palash Biswas Date: Mon, 26 Dec 2022 19:11:10 +0530 Subject: [PATCH] BMC: Add ScheduleGenerationId in GetNotifications Method --- .../src/BCS.BMC.Web.Mvc/Controllers/NotificationController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/BCS.BMC/src/BCS.BMC.Web.Mvc/Controllers/NotificationController.cs b/BCS.BMC/src/BCS.BMC.Web.Mvc/Controllers/NotificationController.cs index 695482c..43ce44a 100644 --- a/BCS.BMC/src/BCS.BMC.Web.Mvc/Controllers/NotificationController.cs +++ b/BCS.BMC/src/BCS.BMC.Web.Mvc/Controllers/NotificationController.cs @@ -81,6 +81,7 @@ namespace BCS.BMC.Web.Controllers data.Status = notification.Status; data.UserId = notification.UserId; data.CompanyId = companyDetails.Id; + data.ScheduleGenerationId = notification.ScheduleGenerationId; await db.Collection("BMC_Notification").Document().SetAsync(data); int userId = 0;