/// <summary>
 /// This constructor will construct the BaseManager and instantiate it's properties.
 /// </summary>
 protected BaseManager()
 {
     Validation = new Validation();
     ConvertEntities = new ConvertEntities();
     OpenIDContext = new OpenIDContext();
 }
 /// <summary>
 /// This constructor will construct the BaseManager and instantiate it's properties.
 /// The IValidation property is set to the given values.
 /// </summary>
 /// <param name="validation">IValidation to be set.</param>
 protected BaseManager(IValidation validation)
 {
     Validation = validation;
     ConvertEntities = new ConvertEntities();
     OpenIDContext = new OpenIDContext();
 }