/// <summary>Initializes the <see cref="EntityFactoryFactory"/> class.</summary> static EntityFactoryFactory() { Array entityTypeValues = Enum.GetValues(typeof(SD.HnD.DAL.EntityType)); foreach (int entityTypeValue in entityTypeValues) { IEntity dummy = GeneralEntityFactory.Create((SD.HnD.DAL.EntityType)entityTypeValue); _factoryPerType.Add(dummy.GetType(), dummy.GetEntityFactory()); } }
/// <summary>Gets the factory of the entity with the SD.HnD.DAL.EntityType specified</summary> /// <param name="typeOfEntity">The type of entity.</param> /// <returns>factory to use or null if not found</returns> public static IEntityFactory GetFactory(SD.HnD.DAL.EntityType typeOfEntity) { return(GetFactory(GeneralEntityFactory.Create(typeOfEntity).GetType())); }
/// <summary>Creates a new entity instance using the GeneralEntityFactory in the generated code, using the passed in entitytype value</summary> /// <param name="entityTypeValue">The entity type value of the entity to create an instance for.</param> /// <returns>new IEntity instance</returns> public override IEntity CreateEntityFromEntityTypeValue(int entityTypeValue) { return(GeneralEntityFactory.Create((SD.HnD.DAL.EntityType)entityTypeValue)); }