public async Task <bool> FlagAsNotDeleted( int userId, CancellationToken cancellationToken = default(CancellationToken)) { cancellationToken.ThrowIfCancellationRequested(); return(await dbSiteUser.FlagAsNotDeleted(userId, cancellationToken)); }
public async Task <bool> FlagAsNotDeleted(int userId) { return(dbSiteUser.FlagAsNotDeleted(userId)); }