I’m trying to integrate my own business logic into Workflow Engine .NET. In particular, I want to get the responsible employee from my business logic and send him an email. Here’s a piece of code in Code Action where the problem is:
var responsibleEmployee = AsperIo.EmployeeProvider.GetResponsibleEmployee(processInstance.ProcessId);
When I click compile I get the following error:
(1:27): error CS0103: The name 'AsperIo' does not exist in the current context
I was wondering whether anyone can help me figure out what seems to be the problem. Thanks.
Looks like you forgot to register your type with the engine. Try calling the following method from the
WorkflowRuntime
object.