private Notification ValidationUpdate(BankAccountInputUpdateDto entity)
        {
            Notification notification = new Notification();

            if (entity == null)
            {
                notification.AddError("Invalid JSON data in request body.");

                return(notification);
            }

            return(notification);
        }