This commit is contained in:
Gaurav Kumar
2025-04-03 17:38:10 +05:30
parent ee27a75ecf
commit ddf0a0fd2d
5 changed files with 7 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
package com.realnet.Notification.Entity;
package com.realnet.Notification.Services;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
@@ -9,12 +9,13 @@ import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Service;
import com.realnet.Notification.Entity.NotEntity;
import com.realnet.Notification.Repository.NotRepo;
import com.realnet.users.entity1.AppUser;
import com.realnet.users.service1.AppUserServiceImpl;
@Service
public class NotificationService {
public class NotificationEntityService {
@Autowired
private NotRepo notRepo;

View File

@@ -3,8 +3,10 @@ import com.realnet.event_management.Repository.Event_ManagementRepository;
import com.realnet.event_management.Entity.Event_Management;import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import com.realnet.Notification.Services.NotificationEntityService;
import com.realnet.SequenceGenerator.Service.SequenceService;
import com.realnet.Notification.Entity.NotificationService;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.stereotype.Service;