Interface INotificationLogRepository
Assembly: NotifyHub.NotificationService.Application.dll
Syntax
public interface INotificationLogRepository
Methods
|
Edit this page
View Source
AddAsync(NotificationLog, CancellationToken)
Declaration
Task<NotificationLog> AddAsync(NotificationLog entity, CancellationToken cancellationToken)
Parameters
Returns
|
Edit this page
View Source
Get(Expression<Func<NotificationLog, bool>>)
Получить записи по условию
Declaration
IQueryable<NotificationLog> Get(Expression<Func<NotificationLog, bool>> predicate)
Parameters
Returns
|
Edit this page
View Source
GetAll()
Declaration
IQueryable<NotificationLog> GetAll()
Returns
|
Edit this page
View Source
GetByIdAsync(Guid, CancellationToken)
Declaration
Task<NotificationLog?> GetByIdAsync(Guid id, CancellationToken cancellationToken)
Parameters
Returns
|
Edit this page
View Source
RemoveByIdAsync(Guid, CancellationToken)
Declaration
Task RemoveByIdAsync(Guid id, CancellationToken cancellationToken)
Parameters
Returns
|
Edit this page
View Source
UpdateAsync(Guid, NotificationLog, CancellationToken)
Declaration
Task<NotificationLog> UpdateAsync(Guid id, NotificationLog entity, CancellationToken cancellationToken)
Parameters
Returns