protected BaseValueGenerator(IValueProvider valueProvider, Func<ITypeGenerator> getTypeGenerator, Func<IArrayRandomizer> getArrayRandomizer, IUniqueValueGenerator uniqueValueGenerator, IAttributeDecorator attributeDecorator) { BaseValueGenerator.Logger.Debug("Entering constructor"); this.ValueProvider = valueProvider; this.GetTypeGenerator = getTypeGenerator; this.GetArrayRandomizer = getArrayRandomizer; this.UniqueValueGenerator = uniqueValueGenerator; this.AttributeDecorator = attributeDecorator; this.typeValueGetterDictionary = new Dictionary<Type, GetValueForTypeDelegate> { {typeof (EmailAttribute), x => this.ValueProvider.GetEmailAddress()}, {typeof (PrimaryKeyAttribute), this.GetPrimaryKey}, {typeof (string), this.GetString}, {typeof (decimal), this.GetDecimal}, {typeof (int), this.GetInteger}, {typeof (uint), this.GetInteger}, {typeof (long), this.GetLong}, {typeof (ulong), this.GetLong}, {typeof (short), this.GetShort}, {typeof (ushort), this.GetShort}, {typeof (bool), x => this.ValueProvider.GetBoolean()}, {typeof (char), x => this.ValueProvider.GetCharacter()}, {typeof (DateTime), this.GetDateTime}, {typeof (byte), x => this.ValueProvider.GetByte()}, {typeof (double), this.GetDouble}, {typeof (float), this.GetFloat}, {typeof (Guid), this.GetGuid }, }; BaseValueGenerator.Logger.Debug("Exiting constructor"); }
public MemoryValueGenerator(IValueProvider valueProvider, Func<ITypeGenerator> getTypeGenerator, Func<IArrayRandomizer> getArrayRandomizer, IUniqueValueGenerator uniqueValueGenerator, IAttributeDecorator attributeDecorator) : base(valueProvider, getTypeGenerator, getArrayRandomizer, uniqueValueGenerator, attributeDecorator) { }