Hi all,
Might sound stupid however I can't workout how to call / invoke a method in the plugins when using the Developer tool kit.
Normally we would create an object of the class and then call the method i.e.
Program p = new Program();
p.someMethod();
If I have something like below how can I call "taskcreate"?
namespace Test.Plugins
{
public class PostOperationmsdyn_customerassetUpdate: PluginBase
{
protected override void ExecuteCrmPlugin(LocalPluginContext localContext)
{
// code
call taskcreate(..........)
}
public void taskCreate(IOrganizationService _service, string liistate, string type, Guid liiguid)
{
// code
}
}
*This post is locked for comments