Files
Backend-Api/Company.Domain/FileAlert/IFileAlertRepository.cs
2025-04-16 14:50:53 +03:30

15 lines
475 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
using _0_Framework_b.Domain;
using CompanyManagment.App.Contracts.FileAlert;
namespace Company.Domain.FileAlert;
public interface IFileAlertRepository : IRepository<long, FileAlert>
{
FileAlertViewModel GetDetails(long id);
void Remove(long id);
List<EditFileAlert> Search(FileAlertSearchModel searchModel);
Task<List<FileAlertViewModel>> GetFileAlerts(FileAlertSearchModel searchModel);
}