package com.avitam.bankloanapplication.repository;

import com.avitam.bankloanapplication.model.entity.Notification;
import org.springframework.data.mongodb.repository.MongoRepository;

import java.util.List;

public interface NotificationRepository extends MongoRepository<Notification, String> {
    Notification findByRecordId(String recordId);

    void deleteByRecordId(String id);

    List<Notification> findByUserIdOrderBySentAtDesc(String customerId);
}
