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 { FileAlertViewModel GetDetails(long id); void Remove(long id); List Search(FileAlertSearchModel searchModel); Task> GetFileAlerts(FileAlertSearchModel searchModel); }