/// <summary>
 /// Constructs the class with a requested service type.
 /// </summary>
 /// <param name="serviceType">Type or type name of the requested object.</param>
 public BindCommandIoc(object serviceType)
 {
     IocSource = new IocBinding(serviceType);
 }
 /// <summary>
 /// Constructs the class with a requested service type.
 /// </summary>
 /// <param name="serviceType">Type or type name of the requested object.</param>
 public BindEventHandlerIoc(object serviceType)
 {
     _iocSource = new IocBinding(serviceType);
 }
 /// <summary>
 /// Default constructor.
 /// </summary>
 public BindCommandIoc()
 {
     IocSource = new IocBinding();
 }
 /// <summary>
 /// Default constructor.
 /// </summary>
 public BindEventHandlerIoc()
 {
     _iocSource = new IocBinding();
 }