public virtual async Task DeleteAsync(PrivateMessageNotification notification)
 {
     await _repository.DeleteAsync(notification);
 }
 public virtual async Task <PrivateMessageNotification> CreateAsync(PrivateMessageNotification notification)
 {
     return(await _repository.InsertAsync(notification, true));
 }