multi entity plugin with interface
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void Execute(IServiceProvider serviceProvider) | |
{ | |
var context = serviceProvider.GetService(typeof(IPluginExecutionContext)) as IPluginExecutionContext; | |
var serviceFactory = serviceProvider.GetService(typeof(IOrganizationServiceFactory)) as IOrganizationServiceFactory; | |
var service = serviceFactory.CreateOrganizationService(context.UserId); | |
var earlyBound = (context.InputParameters["Target"] as Entity).Mock<IEntityWithTotalSum>(); | |
earlyBound.new_totalsum = earlyBound.new_netamount + earlyBound.new_margin; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment