├── .gitattributes ├── .gitignore ├── COPYING.txt ├── README.md ├── TEAM.sln ├── TEAM.sln.DotSettings ├── TEAM ├── App.config ├── DataGridViewDataItems.cs ├── DataGridViewDataObjects.cs ├── DataGridViewPhysicalModel.cs ├── DelayedTextBox.cs ├── Files │ ├── DIM_CUSTOMER.json │ ├── DIM_CUSTOMER_DAILY_SNAPSHOT.json │ ├── HUB_CUSTOMER.json │ ├── HUB_INCENTIVE_OFFER.json │ ├── HUB_MEMBERSHIP_PLAN.json │ ├── HUB_SEGMENT.json │ ├── LNK_CUSTOMER_COSTING.json │ ├── LNK_CUSTOMER_OFFER.json │ ├── LNK_MEMBERSHIP.json │ ├── LNK_RENEWAL_MEMBERSHIP.json │ ├── LSAT_CUSTOMER_COSTING.json │ ├── LSAT_CUSTOMER_OFFER.json │ ├── LSAT_MEMBERSHIP.json │ ├── PSA_PROFILER_CUSTOMER_CONTACT.json │ ├── PSA_PROFILER_CUSTOMER_OFFER.json │ ├── PSA_PROFILER_CUSTOMER_PERSONAL.json │ ├── PSA_PROFILER_CUST_MEMBERSHIP.json │ ├── PSA_PROFILER_ESTIMATED_WORTH.json │ ├── PSA_PROFILER_OFFER.json │ ├── PSA_PROFILER_PERSONALISED_COSTING.json │ ├── PSA_PROFILER_PLAN.json │ ├── PSA_USERMANAGED_SEGMENT.json │ ├── PhysicalModel │ │ ├── 000_Source │ │ │ └── dbo │ │ │ │ ├── CUSTOMER_CONTACT.json │ │ │ │ ├── CUSTOMER_OFFER.json │ │ │ │ ├── CUSTOMER_PERSONAL.json │ │ │ │ ├── CUST_MEMBERSHIP.json │ │ │ │ ├── ESTIMATED_WORTH.json │ │ │ │ ├── OFFER.json │ │ │ │ ├── PERSONALISED_COSTING.json │ │ │ │ └── PLAN.json │ │ ├── 100_Staging_Area │ │ │ └── dbo │ │ │ │ ├── STG_PROFILER_CUSTOMER_CONTACT.json │ │ │ │ ├── STG_PROFILER_CUSTOMER_OFFER.json │ │ │ │ ├── STG_PROFILER_CUSTOMER_PERSONAL.json │ │ │ │ ├── STG_PROFILER_CUST_MEMBERSHIP.json │ │ │ │ ├── STG_PROFILER_ESTIMATED_WORTH.json │ │ │ │ ├── STG_PROFILER_OFFER.json │ │ │ │ ├── STG_PROFILER_PERSONALISED_COSTING.json │ │ │ │ ├── STG_PROFILER_PLAN.json │ │ │ │ └── STG_USERMANAGED_SEGMENT.json │ │ ├── 150_Persistent_Staging_Area │ │ │ └── dbo │ │ │ │ ├── PSA_PROFILER_CUSTOMER_CONTACT.json │ │ │ │ ├── PSA_PROFILER_CUSTOMER_OFFER.json │ │ │ │ ├── PSA_PROFILER_CUSTOMER_PERSONAL.json │ │ │ │ ├── PSA_PROFILER_CUST_MEMBERSHIP.json │ │ │ │ ├── PSA_PROFILER_ESTIMATED_WORTH.json │ │ │ │ ├── PSA_PROFILER_OFFER.json │ │ │ │ ├── PSA_PROFILER_PERSONALISED_COSTING.json │ │ │ │ ├── PSA_PROFILER_PLAN.json │ │ │ │ └── PSA_USERMANAGED_SEGMENT.json │ │ ├── 200_Integration_Layer │ │ │ ├── bdv │ │ │ │ └── vw_CUSTOMER_DERIVED.json │ │ │ └── dbo │ │ │ │ ├── HUB_CUSTOMER.json │ │ │ │ ├── HUB_INCENTIVE_OFFER.json │ │ │ │ ├── HUB_MEMBERSHIP_PLAN.json │ │ │ │ ├── HUB_SEGMENT.json │ │ │ │ ├── LNK_CUSTOMER_COSTING.json │ │ │ │ ├── LNK_CUSTOMER_OFFER.json │ │ │ │ ├── LNK_MEMBERSHIP.json │ │ │ │ ├── LNK_RENEWAL_MEMBERSHIP.json │ │ │ │ ├── LSAT_CUSTOMER_COSTING.json │ │ │ │ ├── LSAT_CUSTOMER_OFFER.json │ │ │ │ ├── LSAT_MEMBERSHIP.json │ │ │ │ ├── SAT_CUSTOMER.json │ │ │ │ ├── SAT_CUSTOMER_CONTACT_DETAILS.json │ │ │ │ ├── SAT_CUSTOMER_DERIVED.json │ │ │ │ ├── SAT_INCENTIVE_OFFER.json │ │ │ │ ├── SAT_MEMBERSHIP_PLAN_DETAIL.json │ │ │ │ ├── SAT_MEMBERSHIP_PLAN_VALUATION.json │ │ │ │ ├── SAT_SEGMENT.json │ │ │ │ └── vw_CUSTOMER_DERIVED.json │ │ └── 300_Presentation_Layer │ │ │ └── dbo │ │ │ ├── DIM_CUSTOMER.json │ │ │ └── DIM_CUSTOMER_DAILY_SNAPSHOT.json │ ├── SAT_CUSTOMER.json │ ├── SAT_CUSTOMER_CONTACT_DETAILS.json │ ├── SAT_CUSTOMER_DERIVED.json │ ├── SAT_INCENTIVE_OFFER.json │ ├── SAT_MEMBERSHIP_PLAN_DETAIL.json │ ├── SAT_MEMBERSHIP_PLAN_VALUATION.json │ ├── SAT_SEGMENT.json │ ├── STG_PROFILER_CUSTOMER_CONTACT.json │ ├── STG_PROFILER_CUSTOMER_OFFER.json │ ├── STG_PROFILER_CUSTOMER_PERSONAL.json │ ├── STG_PROFILER_CUST_MEMBERSHIP.json │ ├── STG_PROFILER_ESTIMATED_WORTH.json │ ├── STG_PROFILER_OFFER.json │ ├── STG_PROFILER_PERSONALISED_COSTING.json │ ├── STG_PROFILER_PLAN.json │ ├── VDW_Samples_TEAM_Attribute_Mapping.json │ └── sample_TEAM_Attribute_Mapping.json ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Form_About.Designer.cs ├── Form_About.cs ├── Form_About.resx ├── Form_Alert.Designer.cs ├── Form_Alert.cs ├── Form_Alert.resx ├── Form_Base.Designer.cs ├── Form_Base.cs ├── Form_Base.resx ├── Form_Connection_Selection.Designer.cs ├── Form_Connection_Selection.cs ├── Form_Connection_Selection.resx ├── Form_Edit_DataObject.Designer.cs ├── Form_Edit_DataObject.cs ├── Form_Edit_DataObject.resx ├── Form_Edit_DataObjectMapping.Designer.cs ├── Form_Edit_DataObjectMapping.cs ├── Form_Edit_DataObjectMapping.resx ├── Form_Json_Configuration.Designer.cs ├── Form_Json_Configuration.cs ├── Form_Json_Configuration.resx ├── Form_Main.Designer.cs ├── Form_Main.cs ├── Form_Main.resx ├── Form_Manage_Configuration.Designer.cs ├── Form_Manage_Configuration.cs ├── Form_Manage_Configuration.resx ├── Form_Manage_Metadata.Designer.cs ├── Form_Manage_Metadata.cs ├── Form_Manage_Metadata.resx ├── Form_Repository.Designer.cs ├── Form_Repository.cs ├── Form_Repository.resx ├── Form_Validation.Designer.cs ├── Form_Validation.cs ├── Form_Validation.resx ├── GlobalSuppressions.cs ├── Libraries │ └── Snowflake.Data.dll ├── LocalTeamEnvironmentConfiguration.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── app.manifest ├── Resources │ ├── CogIcon.ico │ ├── CubeIcon.ico │ ├── DocumentationIcon.ico │ ├── ETLIcon.ico │ ├── ExitApplication.ico │ ├── HelpIconSmall.ico │ ├── LinkIcon.ico │ ├── OpenDirectoryIcon.ico │ ├── OpenFileIcon.ico │ ├── Ravos-logo-small.ico │ ├── Ravos-logo-small_transparant.ico │ ├── SaveFile.ico │ ├── Time.png │ ├── database_icon.png │ ├── fit-16.png │ ├── ghost-icon.png │ ├── log-file.png │ ├── minus-16.png │ ├── plus-16.png │ └── transparent-green-checkmark-hi.png ├── Schema │ └── interfaceDataWarehouseAutomationMetadata.json ├── Scripts │ ├── generateSampleIntegrationSchema.sql │ ├── generateSampleIntegrationSchemaView.sql │ ├── generateSamplePersistentStagingSchema.sql │ ├── generateSamplePresentationSchema.sql │ ├── generateSampleSourceSchema.sql │ └── generateSampleStagingSchema.sql ├── Support │ └── DataObjectMappingList.sql ├── TEAM.csproj ├── TEAM.deps.json ├── TabPageEnvironments.cs ├── TabPageSnowflakeConnection.cs ├── TabPageSqlServerConnection.cs ├── TeamJsonHandling.cs ├── ThreadHelper.cs └── ValidationSetting.cs ├── TEAM_Installation_Setup └── TEAM_Installation_Setup.vdproj └── Team_Library ├── EventLog.cs ├── FileHandling.cs ├── GlobalParameters.cs ├── JsonExportSetting.cs ├── JsonOutputHandling.cs ├── MetadataHandling.cs ├── SortableBindingList.cs ├── TEAM_Library.csproj ├── TeamClassification.cs ├── TeamConfiguration.cs ├── TeamConnection.cs ├── TeamDataItemMapping.cs ├── TeamDataObjectMapping.cs ├── TeamDataObjectMappingsFileCombination.cs ├── TeamEnvironment.cs ├── TeamModelLayer.cs ├── TeamObjectModel.cs ├── TeamPhysicalModel.cs ├── TeamValidation.cs └── Utility.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/COPYING.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/README.md -------------------------------------------------------------------------------- /TEAM.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM.sln -------------------------------------------------------------------------------- /TEAM.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM.sln.DotSettings -------------------------------------------------------------------------------- /TEAM/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/App.config -------------------------------------------------------------------------------- /TEAM/DataGridViewDataItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/DataGridViewDataItems.cs -------------------------------------------------------------------------------- /TEAM/DataGridViewDataObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/DataGridViewDataObjects.cs -------------------------------------------------------------------------------- /TEAM/DataGridViewPhysicalModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/DataGridViewPhysicalModel.cs -------------------------------------------------------------------------------- /TEAM/DelayedTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/DelayedTextBox.cs -------------------------------------------------------------------------------- /TEAM/Files/DIM_CUSTOMER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/DIM_CUSTOMER.json -------------------------------------------------------------------------------- /TEAM/Files/DIM_CUSTOMER_DAILY_SNAPSHOT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/DIM_CUSTOMER_DAILY_SNAPSHOT.json -------------------------------------------------------------------------------- /TEAM/Files/HUB_CUSTOMER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/HUB_CUSTOMER.json -------------------------------------------------------------------------------- /TEAM/Files/HUB_INCENTIVE_OFFER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/HUB_INCENTIVE_OFFER.json -------------------------------------------------------------------------------- /TEAM/Files/HUB_MEMBERSHIP_PLAN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/HUB_MEMBERSHIP_PLAN.json -------------------------------------------------------------------------------- /TEAM/Files/HUB_SEGMENT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/HUB_SEGMENT.json -------------------------------------------------------------------------------- /TEAM/Files/LNK_CUSTOMER_COSTING.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/LNK_CUSTOMER_COSTING.json -------------------------------------------------------------------------------- /TEAM/Files/LNK_CUSTOMER_OFFER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/LNK_CUSTOMER_OFFER.json -------------------------------------------------------------------------------- /TEAM/Files/LNK_MEMBERSHIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/LNK_MEMBERSHIP.json -------------------------------------------------------------------------------- /TEAM/Files/LNK_RENEWAL_MEMBERSHIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/LNK_RENEWAL_MEMBERSHIP.json -------------------------------------------------------------------------------- /TEAM/Files/LSAT_CUSTOMER_COSTING.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/LSAT_CUSTOMER_COSTING.json -------------------------------------------------------------------------------- /TEAM/Files/LSAT_CUSTOMER_OFFER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/LSAT_CUSTOMER_OFFER.json -------------------------------------------------------------------------------- /TEAM/Files/LSAT_MEMBERSHIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/LSAT_MEMBERSHIP.json -------------------------------------------------------------------------------- /TEAM/Files/PSA_PROFILER_CUSTOMER_CONTACT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PSA_PROFILER_CUSTOMER_CONTACT.json -------------------------------------------------------------------------------- /TEAM/Files/PSA_PROFILER_CUSTOMER_OFFER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PSA_PROFILER_CUSTOMER_OFFER.json -------------------------------------------------------------------------------- /TEAM/Files/PSA_PROFILER_CUSTOMER_PERSONAL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PSA_PROFILER_CUSTOMER_PERSONAL.json -------------------------------------------------------------------------------- /TEAM/Files/PSA_PROFILER_CUST_MEMBERSHIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PSA_PROFILER_CUST_MEMBERSHIP.json -------------------------------------------------------------------------------- /TEAM/Files/PSA_PROFILER_ESTIMATED_WORTH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PSA_PROFILER_ESTIMATED_WORTH.json -------------------------------------------------------------------------------- /TEAM/Files/PSA_PROFILER_OFFER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PSA_PROFILER_OFFER.json -------------------------------------------------------------------------------- /TEAM/Files/PSA_PROFILER_PERSONALISED_COSTING.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PSA_PROFILER_PERSONALISED_COSTING.json -------------------------------------------------------------------------------- /TEAM/Files/PSA_PROFILER_PLAN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PSA_PROFILER_PLAN.json -------------------------------------------------------------------------------- /TEAM/Files/PSA_USERMANAGED_SEGMENT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PSA_USERMANAGED_SEGMENT.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/000_Source/dbo/CUSTOMER_CONTACT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/000_Source/dbo/CUSTOMER_CONTACT.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/000_Source/dbo/CUSTOMER_OFFER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/000_Source/dbo/CUSTOMER_OFFER.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/000_Source/dbo/CUSTOMER_PERSONAL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/000_Source/dbo/CUSTOMER_PERSONAL.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/000_Source/dbo/CUST_MEMBERSHIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/000_Source/dbo/CUST_MEMBERSHIP.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/000_Source/dbo/ESTIMATED_WORTH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/000_Source/dbo/ESTIMATED_WORTH.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/000_Source/dbo/OFFER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/000_Source/dbo/OFFER.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/000_Source/dbo/PERSONALISED_COSTING.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/000_Source/dbo/PERSONALISED_COSTING.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/000_Source/dbo/PLAN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/000_Source/dbo/PLAN.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/100_Staging_Area/dbo/STG_PROFILER_CUSTOMER_CONTACT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/100_Staging_Area/dbo/STG_PROFILER_CUSTOMER_CONTACT.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/100_Staging_Area/dbo/STG_PROFILER_CUSTOMER_OFFER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/100_Staging_Area/dbo/STG_PROFILER_CUSTOMER_OFFER.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/100_Staging_Area/dbo/STG_PROFILER_CUSTOMER_PERSONAL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/100_Staging_Area/dbo/STG_PROFILER_CUSTOMER_PERSONAL.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/100_Staging_Area/dbo/STG_PROFILER_CUST_MEMBERSHIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/100_Staging_Area/dbo/STG_PROFILER_CUST_MEMBERSHIP.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/100_Staging_Area/dbo/STG_PROFILER_ESTIMATED_WORTH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/100_Staging_Area/dbo/STG_PROFILER_ESTIMATED_WORTH.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/100_Staging_Area/dbo/STG_PROFILER_OFFER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/100_Staging_Area/dbo/STG_PROFILER_OFFER.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/100_Staging_Area/dbo/STG_PROFILER_PERSONALISED_COSTING.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/100_Staging_Area/dbo/STG_PROFILER_PERSONALISED_COSTING.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/100_Staging_Area/dbo/STG_PROFILER_PLAN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/100_Staging_Area/dbo/STG_PROFILER_PLAN.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/100_Staging_Area/dbo/STG_USERMANAGED_SEGMENT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/100_Staging_Area/dbo/STG_USERMANAGED_SEGMENT.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/150_Persistent_Staging_Area/dbo/PSA_PROFILER_CUSTOMER_CONTACT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/150_Persistent_Staging_Area/dbo/PSA_PROFILER_CUSTOMER_CONTACT.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/150_Persistent_Staging_Area/dbo/PSA_PROFILER_CUSTOMER_OFFER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/150_Persistent_Staging_Area/dbo/PSA_PROFILER_CUSTOMER_OFFER.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/150_Persistent_Staging_Area/dbo/PSA_PROFILER_CUSTOMER_PERSONAL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/150_Persistent_Staging_Area/dbo/PSA_PROFILER_CUSTOMER_PERSONAL.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/150_Persistent_Staging_Area/dbo/PSA_PROFILER_CUST_MEMBERSHIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/150_Persistent_Staging_Area/dbo/PSA_PROFILER_CUST_MEMBERSHIP.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/150_Persistent_Staging_Area/dbo/PSA_PROFILER_ESTIMATED_WORTH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/150_Persistent_Staging_Area/dbo/PSA_PROFILER_ESTIMATED_WORTH.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/150_Persistent_Staging_Area/dbo/PSA_PROFILER_OFFER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/150_Persistent_Staging_Area/dbo/PSA_PROFILER_OFFER.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/150_Persistent_Staging_Area/dbo/PSA_PROFILER_PERSONALISED_COSTING.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/150_Persistent_Staging_Area/dbo/PSA_PROFILER_PERSONALISED_COSTING.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/150_Persistent_Staging_Area/dbo/PSA_PROFILER_PLAN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/150_Persistent_Staging_Area/dbo/PSA_PROFILER_PLAN.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/150_Persistent_Staging_Area/dbo/PSA_USERMANAGED_SEGMENT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/150_Persistent_Staging_Area/dbo/PSA_USERMANAGED_SEGMENT.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/200_Integration_Layer/bdv/vw_CUSTOMER_DERIVED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/200_Integration_Layer/bdv/vw_CUSTOMER_DERIVED.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/HUB_CUSTOMER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/HUB_CUSTOMER.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/HUB_INCENTIVE_OFFER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/HUB_INCENTIVE_OFFER.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/HUB_MEMBERSHIP_PLAN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/HUB_MEMBERSHIP_PLAN.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/HUB_SEGMENT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/HUB_SEGMENT.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/LNK_CUSTOMER_COSTING.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/LNK_CUSTOMER_COSTING.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/LNK_CUSTOMER_OFFER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/LNK_CUSTOMER_OFFER.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/LNK_MEMBERSHIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/LNK_MEMBERSHIP.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/LNK_RENEWAL_MEMBERSHIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/LNK_RENEWAL_MEMBERSHIP.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/LSAT_CUSTOMER_COSTING.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/LSAT_CUSTOMER_COSTING.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/LSAT_CUSTOMER_OFFER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/LSAT_CUSTOMER_OFFER.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/LSAT_MEMBERSHIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/LSAT_MEMBERSHIP.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/SAT_CUSTOMER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/SAT_CUSTOMER.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/SAT_CUSTOMER_CONTACT_DETAILS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/SAT_CUSTOMER_CONTACT_DETAILS.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/SAT_CUSTOMER_DERIVED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/SAT_CUSTOMER_DERIVED.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/SAT_INCENTIVE_OFFER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/SAT_INCENTIVE_OFFER.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/SAT_MEMBERSHIP_PLAN_DETAIL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/SAT_MEMBERSHIP_PLAN_DETAIL.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/SAT_MEMBERSHIP_PLAN_VALUATION.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/SAT_MEMBERSHIP_PLAN_VALUATION.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/SAT_SEGMENT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/SAT_SEGMENT.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/vw_CUSTOMER_DERIVED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/200_Integration_Layer/dbo/vw_CUSTOMER_DERIVED.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/300_Presentation_Layer/dbo/DIM_CUSTOMER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/300_Presentation_Layer/dbo/DIM_CUSTOMER.json -------------------------------------------------------------------------------- /TEAM/Files/PhysicalModel/300_Presentation_Layer/dbo/DIM_CUSTOMER_DAILY_SNAPSHOT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/PhysicalModel/300_Presentation_Layer/dbo/DIM_CUSTOMER_DAILY_SNAPSHOT.json -------------------------------------------------------------------------------- /TEAM/Files/SAT_CUSTOMER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/SAT_CUSTOMER.json -------------------------------------------------------------------------------- /TEAM/Files/SAT_CUSTOMER_CONTACT_DETAILS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/SAT_CUSTOMER_CONTACT_DETAILS.json -------------------------------------------------------------------------------- /TEAM/Files/SAT_CUSTOMER_DERIVED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/SAT_CUSTOMER_DERIVED.json -------------------------------------------------------------------------------- /TEAM/Files/SAT_INCENTIVE_OFFER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/SAT_INCENTIVE_OFFER.json -------------------------------------------------------------------------------- /TEAM/Files/SAT_MEMBERSHIP_PLAN_DETAIL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/SAT_MEMBERSHIP_PLAN_DETAIL.json -------------------------------------------------------------------------------- /TEAM/Files/SAT_MEMBERSHIP_PLAN_VALUATION.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/SAT_MEMBERSHIP_PLAN_VALUATION.json -------------------------------------------------------------------------------- /TEAM/Files/SAT_SEGMENT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/SAT_SEGMENT.json -------------------------------------------------------------------------------- /TEAM/Files/STG_PROFILER_CUSTOMER_CONTACT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/STG_PROFILER_CUSTOMER_CONTACT.json -------------------------------------------------------------------------------- /TEAM/Files/STG_PROFILER_CUSTOMER_OFFER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/STG_PROFILER_CUSTOMER_OFFER.json -------------------------------------------------------------------------------- /TEAM/Files/STG_PROFILER_CUSTOMER_PERSONAL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/STG_PROFILER_CUSTOMER_PERSONAL.json -------------------------------------------------------------------------------- /TEAM/Files/STG_PROFILER_CUST_MEMBERSHIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/STG_PROFILER_CUST_MEMBERSHIP.json -------------------------------------------------------------------------------- /TEAM/Files/STG_PROFILER_ESTIMATED_WORTH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/STG_PROFILER_ESTIMATED_WORTH.json -------------------------------------------------------------------------------- /TEAM/Files/STG_PROFILER_OFFER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/STG_PROFILER_OFFER.json -------------------------------------------------------------------------------- /TEAM/Files/STG_PROFILER_PERSONALISED_COSTING.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/STG_PROFILER_PERSONALISED_COSTING.json -------------------------------------------------------------------------------- /TEAM/Files/STG_PROFILER_PLAN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/STG_PROFILER_PLAN.json -------------------------------------------------------------------------------- /TEAM/Files/VDW_Samples_TEAM_Attribute_Mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/VDW_Samples_TEAM_Attribute_Mapping.json -------------------------------------------------------------------------------- /TEAM/Files/sample_TEAM_Attribute_Mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Files/sample_TEAM_Attribute_Mapping.json -------------------------------------------------------------------------------- /TEAM/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/FodyWeavers.xml -------------------------------------------------------------------------------- /TEAM/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/FodyWeavers.xsd -------------------------------------------------------------------------------- /TEAM/Form_About.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_About.Designer.cs -------------------------------------------------------------------------------- /TEAM/Form_About.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_About.cs -------------------------------------------------------------------------------- /TEAM/Form_About.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_About.resx -------------------------------------------------------------------------------- /TEAM/Form_Alert.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Alert.Designer.cs -------------------------------------------------------------------------------- /TEAM/Form_Alert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Alert.cs -------------------------------------------------------------------------------- /TEAM/Form_Alert.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Alert.resx -------------------------------------------------------------------------------- /TEAM/Form_Base.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Base.Designer.cs -------------------------------------------------------------------------------- /TEAM/Form_Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Base.cs -------------------------------------------------------------------------------- /TEAM/Form_Base.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Base.resx -------------------------------------------------------------------------------- /TEAM/Form_Connection_Selection.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Connection_Selection.Designer.cs -------------------------------------------------------------------------------- /TEAM/Form_Connection_Selection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Connection_Selection.cs -------------------------------------------------------------------------------- /TEAM/Form_Connection_Selection.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Connection_Selection.resx -------------------------------------------------------------------------------- /TEAM/Form_Edit_DataObject.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Edit_DataObject.Designer.cs -------------------------------------------------------------------------------- /TEAM/Form_Edit_DataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Edit_DataObject.cs -------------------------------------------------------------------------------- /TEAM/Form_Edit_DataObject.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Edit_DataObject.resx -------------------------------------------------------------------------------- /TEAM/Form_Edit_DataObjectMapping.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Edit_DataObjectMapping.Designer.cs -------------------------------------------------------------------------------- /TEAM/Form_Edit_DataObjectMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Edit_DataObjectMapping.cs -------------------------------------------------------------------------------- /TEAM/Form_Edit_DataObjectMapping.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Edit_DataObjectMapping.resx -------------------------------------------------------------------------------- /TEAM/Form_Json_Configuration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Json_Configuration.Designer.cs -------------------------------------------------------------------------------- /TEAM/Form_Json_Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Json_Configuration.cs -------------------------------------------------------------------------------- /TEAM/Form_Json_Configuration.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Json_Configuration.resx -------------------------------------------------------------------------------- /TEAM/Form_Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Main.Designer.cs -------------------------------------------------------------------------------- /TEAM/Form_Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Main.cs -------------------------------------------------------------------------------- /TEAM/Form_Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Main.resx -------------------------------------------------------------------------------- /TEAM/Form_Manage_Configuration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Manage_Configuration.Designer.cs -------------------------------------------------------------------------------- /TEAM/Form_Manage_Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Manage_Configuration.cs -------------------------------------------------------------------------------- /TEAM/Form_Manage_Configuration.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Manage_Configuration.resx -------------------------------------------------------------------------------- /TEAM/Form_Manage_Metadata.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Manage_Metadata.Designer.cs -------------------------------------------------------------------------------- /TEAM/Form_Manage_Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Manage_Metadata.cs -------------------------------------------------------------------------------- /TEAM/Form_Manage_Metadata.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Manage_Metadata.resx -------------------------------------------------------------------------------- /TEAM/Form_Repository.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Repository.Designer.cs -------------------------------------------------------------------------------- /TEAM/Form_Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Repository.cs -------------------------------------------------------------------------------- /TEAM/Form_Repository.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Repository.resx -------------------------------------------------------------------------------- /TEAM/Form_Validation.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Validation.Designer.cs -------------------------------------------------------------------------------- /TEAM/Form_Validation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Validation.cs -------------------------------------------------------------------------------- /TEAM/Form_Validation.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Form_Validation.resx -------------------------------------------------------------------------------- /TEAM/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/GlobalSuppressions.cs -------------------------------------------------------------------------------- /TEAM/Libraries/Snowflake.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Libraries/Snowflake.Data.dll -------------------------------------------------------------------------------- /TEAM/LocalTeamEnvironmentConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/LocalTeamEnvironmentConfiguration.cs -------------------------------------------------------------------------------- /TEAM/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Program.cs -------------------------------------------------------------------------------- /TEAM/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TEAM/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TEAM/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Properties/Resources.resx -------------------------------------------------------------------------------- /TEAM/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TEAM/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Properties/Settings.settings -------------------------------------------------------------------------------- /TEAM/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Properties/app.manifest -------------------------------------------------------------------------------- /TEAM/Resources/CogIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Resources/CogIcon.ico -------------------------------------------------------------------------------- /TEAM/Resources/CubeIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Resources/CubeIcon.ico -------------------------------------------------------------------------------- /TEAM/Resources/DocumentationIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Resources/DocumentationIcon.ico -------------------------------------------------------------------------------- /TEAM/Resources/ETLIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Resources/ETLIcon.ico -------------------------------------------------------------------------------- /TEAM/Resources/ExitApplication.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Resources/ExitApplication.ico -------------------------------------------------------------------------------- /TEAM/Resources/HelpIconSmall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Resources/HelpIconSmall.ico -------------------------------------------------------------------------------- /TEAM/Resources/LinkIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Resources/LinkIcon.ico -------------------------------------------------------------------------------- /TEAM/Resources/OpenDirectoryIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Resources/OpenDirectoryIcon.ico -------------------------------------------------------------------------------- /TEAM/Resources/OpenFileIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Resources/OpenFileIcon.ico -------------------------------------------------------------------------------- /TEAM/Resources/Ravos-logo-small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Resources/Ravos-logo-small.ico -------------------------------------------------------------------------------- /TEAM/Resources/Ravos-logo-small_transparant.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Resources/Ravos-logo-small_transparant.ico -------------------------------------------------------------------------------- /TEAM/Resources/SaveFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Resources/SaveFile.ico -------------------------------------------------------------------------------- /TEAM/Resources/Time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Resources/Time.png -------------------------------------------------------------------------------- /TEAM/Resources/database_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Resources/database_icon.png -------------------------------------------------------------------------------- /TEAM/Resources/fit-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Resources/fit-16.png -------------------------------------------------------------------------------- /TEAM/Resources/ghost-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Resources/ghost-icon.png -------------------------------------------------------------------------------- /TEAM/Resources/log-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Resources/log-file.png -------------------------------------------------------------------------------- /TEAM/Resources/minus-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Resources/minus-16.png -------------------------------------------------------------------------------- /TEAM/Resources/plus-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Resources/plus-16.png -------------------------------------------------------------------------------- /TEAM/Resources/transparent-green-checkmark-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Resources/transparent-green-checkmark-hi.png -------------------------------------------------------------------------------- /TEAM/Schema/interfaceDataWarehouseAutomationMetadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Schema/interfaceDataWarehouseAutomationMetadata.json -------------------------------------------------------------------------------- /TEAM/Scripts/generateSampleIntegrationSchema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Scripts/generateSampleIntegrationSchema.sql -------------------------------------------------------------------------------- /TEAM/Scripts/generateSampleIntegrationSchemaView.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Scripts/generateSampleIntegrationSchemaView.sql -------------------------------------------------------------------------------- /TEAM/Scripts/generateSamplePersistentStagingSchema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Scripts/generateSamplePersistentStagingSchema.sql -------------------------------------------------------------------------------- /TEAM/Scripts/generateSamplePresentationSchema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Scripts/generateSamplePresentationSchema.sql -------------------------------------------------------------------------------- /TEAM/Scripts/generateSampleSourceSchema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Scripts/generateSampleSourceSchema.sql -------------------------------------------------------------------------------- /TEAM/Scripts/generateSampleStagingSchema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Scripts/generateSampleStagingSchema.sql -------------------------------------------------------------------------------- /TEAM/Support/DataObjectMappingList.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/Support/DataObjectMappingList.sql -------------------------------------------------------------------------------- /TEAM/TEAM.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/TEAM.csproj -------------------------------------------------------------------------------- /TEAM/TEAM.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/TEAM.deps.json -------------------------------------------------------------------------------- /TEAM/TabPageEnvironments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/TabPageEnvironments.cs -------------------------------------------------------------------------------- /TEAM/TabPageSnowflakeConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/TabPageSnowflakeConnection.cs -------------------------------------------------------------------------------- /TEAM/TabPageSqlServerConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/TabPageSqlServerConnection.cs -------------------------------------------------------------------------------- /TEAM/TeamJsonHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/TeamJsonHandling.cs -------------------------------------------------------------------------------- /TEAM/ThreadHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/ThreadHelper.cs -------------------------------------------------------------------------------- /TEAM/ValidationSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM/ValidationSetting.cs -------------------------------------------------------------------------------- /TEAM_Installation_Setup/TEAM_Installation_Setup.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/TEAM_Installation_Setup/TEAM_Installation_Setup.vdproj -------------------------------------------------------------------------------- /Team_Library/EventLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/Team_Library/EventLog.cs -------------------------------------------------------------------------------- /Team_Library/FileHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/Team_Library/FileHandling.cs -------------------------------------------------------------------------------- /Team_Library/GlobalParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/Team_Library/GlobalParameters.cs -------------------------------------------------------------------------------- /Team_Library/JsonExportSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/Team_Library/JsonExportSetting.cs -------------------------------------------------------------------------------- /Team_Library/JsonOutputHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/Team_Library/JsonOutputHandling.cs -------------------------------------------------------------------------------- /Team_Library/MetadataHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/Team_Library/MetadataHandling.cs -------------------------------------------------------------------------------- /Team_Library/SortableBindingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/Team_Library/SortableBindingList.cs -------------------------------------------------------------------------------- /Team_Library/TEAM_Library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/Team_Library/TEAM_Library.csproj -------------------------------------------------------------------------------- /Team_Library/TeamClassification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/Team_Library/TeamClassification.cs -------------------------------------------------------------------------------- /Team_Library/TeamConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/Team_Library/TeamConfiguration.cs -------------------------------------------------------------------------------- /Team_Library/TeamConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/Team_Library/TeamConnection.cs -------------------------------------------------------------------------------- /Team_Library/TeamDataItemMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/Team_Library/TeamDataItemMapping.cs -------------------------------------------------------------------------------- /Team_Library/TeamDataObjectMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/Team_Library/TeamDataObjectMapping.cs -------------------------------------------------------------------------------- /Team_Library/TeamDataObjectMappingsFileCombination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/Team_Library/TeamDataObjectMappingsFileCombination.cs -------------------------------------------------------------------------------- /Team_Library/TeamEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/Team_Library/TeamEnvironment.cs -------------------------------------------------------------------------------- /Team_Library/TeamModelLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/Team_Library/TeamModelLayer.cs -------------------------------------------------------------------------------- /Team_Library/TeamObjectModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/Team_Library/TeamObjectModel.cs -------------------------------------------------------------------------------- /Team_Library/TeamPhysicalModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/Team_Library/TeamPhysicalModel.cs -------------------------------------------------------------------------------- /Team_Library/TeamValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/Team_Library/TeamValidation.cs -------------------------------------------------------------------------------- /Team_Library/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-solution-automation-engine/TEAM/HEAD/Team_Library/Utility.cs --------------------------------------------------------------------------------