refactor: Ersetzte 'usrId' durch 'userId'.

This commit is contained in:
Developer 02
2024-10-24 15:22:32 +02:00
parent ca94368d0b
commit 22f69589c9
10 changed files with 20 additions and 20 deletions

View File

@@ -8,7 +8,7 @@ namespace WorkFlow.Infrastructure.Contracts
Task<IEnumerable<ProfileObjState>> ReadAsync(
bool isReadonly = true,
bool withProfile = true, bool withUser = true, bool withState = true,
int? usrId = null, string? username = null,
int? userId = null, string? username = null,
int? profileId = null, int? objId = null, bool? profileActive = null);
}
}