15 lines
475 B
C#
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);
|
|
} |