IPLUGIN INTERFACE IN DYNAMICS CRM PLUGINS The first and mandatory Interface we require to start plugin is IPlugin Interface. What is IPlugin Interface? IPlugin is the base interface for plugins in Dynamics CRM. After Adding SDK reference the first step we need to do is to inherit IPlugin interface. We can inherit it by adding : IPlugin with our plugin class name Example - public class MyPlugin : IPlugin It is available at Namespace: Microsoft.Xrm.Sdk Assembly : Microsoft.Xrm.Sdk (in Microsoft.Xrm.Sdk.dll) Syntax for Iplugin public interface IPlugin IPlugin contains one method i.e Execute , Since if we are inheriting any interface in our code, we need to implement or we need to provide definition to all its method. So it is mandatory to define Execute method. Syntax for Execute method public void Execute(IServiceProvider serviceProvider) Parameters for Execute method The parameter we pass in Execute method is type of IServic...