13 lines
361 B
C#
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);
|
|
} |