示例#1
0
 /// <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()));
 }
示例#2
0
 /// <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));
 }