Rename ActionId to Id across the codebase
Updated the `ActionId` property to `Id` in `RecActionDto` and `RecAction` classes for consistency. Reflected this change in all relevant files, including log messages, property assignments, and database column mappings. Standardized naming conventions to improve code clarity and maintainability.
This commit is contained in:
@@ -33,9 +33,9 @@ public class InvokeRecActionsCommandHandler(ISender sender, IHttpClientFactory c
|
||||
{
|
||||
logger?.LogError(
|
||||
ex,
|
||||
"Error invoking Rec action. ProfileId: {ProfileId}, ActionId: {ActionId}",
|
||||
"Error invoking Rec action. ProfileId: {ProfileId}, Id: {Id}",
|
||||
action.ProfileId,
|
||||
action.ActionId
|
||||
action.Id
|
||||
);
|
||||
}
|
||||
finally
|
||||
|
||||
Reference in New Issue
Block a user