Ejemplo n.º 1
0
 /// <summary>Gets the factory of the entity with the SD.LLBLGen.Pro.Examples.EntityType specified</summary>
 /// <param name="typeOfEntity">The type of entity.</param>
 /// <returns>factory to use or null if not found</returns>
 public static IEntityFactory2 GetFactory(SD.LLBLGen.Pro.Examples.EntityType typeOfEntity)
 {
     return(GetFactory(GeneralEntityFactory.Create(typeOfEntity).GetType()));
 }
Ejemplo n.º 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 IEntity2 CreateEntityFromEntityTypeValue(int entityTypeValue)
 {
     return(GeneralEntityFactory.Create((SD.LLBLGen.Pro.Examples.EntityType)entityTypeValue));
 }