Files
Backend-Api/Company.Domain/FileAlert/IFileAlertRepository.cs
2024-07-05 21:36:15 +03:30

13 lines
361 B
C#

using System.Collections.Generic;
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);
}