我正在尝试将自己的业务逻辑集成到Workflow Engine .NET 中。特别是,我想从我的业务逻辑中找到负责的员工并向他发送电子邮件。这是代码操作中的一段代码,问题出在:
var responsibleEmployee = AsperIo.EmployeeProvider.GetResponsibleEmployee(processInstance.ProcessId);
当我单击编译时,出现以下错误:
(1:27): error CS0103: The name 'AsperIo' does not exist in the current context
我想知道是否有人可以帮助我找出问题所在。谢谢。