/// <summary>Initializes the class members</summary> private void InitClassMembers() { _products = new SD.LLBLGen.Pro.Examples.CollectionClasses.ProductCollection(); _products.SetContainingEntityInfo(this, "Supplier"); _categoriesCollectionViaProducts = new SD.LLBLGen.Pro.Examples.CollectionClasses.CategoryCollection(); PerformDependencyInjection(); // __LLBLGENPRO_USER_CODE_REGION_START InitClassMembers // __LLBLGENPRO_USER_CODE_REGION_END OnInitClassMembersComplete(); }
/// <summary>Private CTor for deserialization</summary> /// <param name="info"></param> /// <param name="context"></param> protected SupplierEntity(SerializationInfo info, StreamingContext context) : base(info, context) { _products = (SD.LLBLGen.Pro.Examples.CollectionClasses.ProductCollection)info.GetValue("_products", typeof(SD.LLBLGen.Pro.Examples.CollectionClasses.ProductCollection)); _alwaysFetchProducts = info.GetBoolean("_alwaysFetchProducts"); _alreadyFetchedProducts = info.GetBoolean("_alreadyFetchedProducts"); _categoriesCollectionViaProducts = (SD.LLBLGen.Pro.Examples.CollectionClasses.CategoryCollection)info.GetValue("_categoriesCollectionViaProducts", typeof(SD.LLBLGen.Pro.Examples.CollectionClasses.CategoryCollection)); _alwaysFetchCategoriesCollectionViaProducts = info.GetBoolean("_alwaysFetchCategoriesCollectionViaProducts"); _alreadyFetchedCategoriesCollectionViaProducts = info.GetBoolean("_alreadyFetchedCategoriesCollectionViaProducts"); this.FixupDeserialization(FieldInfoProviderSingleton.GetInstance(), PersistenceInfoProviderSingleton.GetInstance()); // __LLBLGENPRO_USER_CODE_REGION_START DeserializationConstructor // __LLBLGENPRO_USER_CODE_REGION_END }